POST channel-accounts/users
- 09 Sep 2024
- 1 Minute to read
- Print
- PDF
POST channel-accounts/users
- Updated on 09 Sep 2024
- 1 Minute to read
- Print
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Post Channel Account Users
Creates a new user for a channel account.
URL (POST)
/api/v1/channel-accounts/users
Query Parameters
None
Request Body
{
"channelAccountId": ####,
"firstName": "",
"lastName": "",
"email": "",
"userRole": "Channel Account Admin"
}
Response
{
"id": ####,
"channelAccountId": ####,
"firstName": "",
"lastName": "",
"email": "",
"userRole": "Channel Account Admin",
"status": "active", (can have values: Active, Deactivated, Suspended, or Locked)
"verified": false, (can return true/false values)
"mfa": false,
"imageUrl": null,
"creationDate": "2023-12-19T09:35:47.598+00:00",
"address1": null,
"address2": null,
"country": null,
"city": null,
"state": null,
"zip": null,
"phone": null,
"isSsoUser": false
}