Sync users with a customer.
cURL
curl --request POST \ --url https://1-some-client.some-server.healvi-chat/third-party/v1/customers/{id}/users \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "user_ids": [ 123 ] } '
{ "data": [ { "id": 123, "name": "<string>", "email": 123, "roles": [ "<string>" ], "permissions": [ "<string>" ], "created_at": "2023-01-01T12:00:00Z", "updated_at": "2023-01-01T12:00:00Z" } ] }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Array of user IDs. It will automatically determine which IDs to attach or detach.
Success
Show child attributes