Post
/v1/channel-accounts/users
The “Create Channel Account User” method is used to create a new user for a specific Channel Account. The purpose of “Create Channel Account User” is to allow the Distributor/Governance and Control Account users to create new users for their Channel Accounts.
Limitations include: Only users with specific permissions can use this endpoint!
Security
HTTP
Type basic
Body parameters
string
Example{
"channelAccountId": 12345,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"userRole": "Channel Account Admin"
}
Responses
200
OK
string
Example{
"id": 67890,
"channelAccountId": 12345,
"firstName": "John",
"lastName": "Doe",
"email": "john.doe@example.com",
"userRole": "Channel Account Admin",
"status": "active",
"verified": false,
"mfa": false,
"imageUrl": null,
"creationDate": "2023-12-19T09:35:47.598Z",
"address1": null,
"address2": null,
"country": null,
"city": null,
"state": null,
"zip": null,
"phone": null,
"isSsoUser": false
}