Conversations User Resource
In Conversations, Users are Participants with privileges such as the ability to edit and delete Messages.
Every Conversation Participant who connects with a Chat SDK (browser or mobile) is backed by a User. Participants over SMS or other non-chat channel, in contrast, do not have a corresponding User. Attached to the User is:
- the Role assigned to the User, which determines their permissions in your application
- a JSON blob of arbitrary Attributes, which you can use to store profile information for display in your application
- Online/Offline status, determined by whether the User is presently connected through a frontend SDK
- the Identity string, which uniquely identifies a user in each Conversation Service.
We recommend following the standard URI specification and avoid the following reserved characters ! * ' ( ) ; : @ & = + $ , / ? % # [ ]
for values such as identity and friendly name.
API Base URL
All URLs in the reference documentation use the following base URL:
https://conversations.twilio.com/v1
Using the shortened base URL
Using the REST API, you can interact with User resources in the default Conversation Service instance via a "shortened" URL that does not include the Conversation Service instance SID ("ISXXX..."). If you are only using one Conversation Service (the default), you do not need to include the Conversation Service SID in your URL, e.g.
GET /v1/Users/
For Conversations applications that build on more than one Conversation Service instance, you will need to specify the Conversation Service SID in the REST API call:
GET /v1/Services/<Service SID, ISXXX...>/Users/
User properties
Resource Properties in REST API format | |
---|---|
sid
|
The unique string that we created to identify the User resource. |
account_sid
|
The SID of the Account that created the User resource. |
chat_service_sid
|
The SID of the Conversation Service the User resource is associated with. |
role_sid
|
The SID of a service-level Role assigned to the user. |
identity
|
The application-defined string that uniquely identifies the resource's User within the Conversation Service. This value is often a username or an email address, and is case-sensitive. |
friendly_name
|
The string that you assigned to describe the resource. |
attributes
|
The JSON Object string that stores application-specific data. If attributes have not been set, |
is_online
|
Whether the User is actively connected to this Conversations Service and online. This value is only returned by Fetch actions that return a single resource and |
is_notifiable
|
Whether the User has a potentially valid Push Notification registration (APN or GCM) for this Conversations Service. If at least one registration exists, |
date_created
|
The date and time in GMT when the resource was created specified in ISO 8601 format. |
date_updated
|
The date and time in GMT when the resource was last updated specified in ISO 8601 format. |
url
|
An absolute API resource URL for this user. |
links
|
|
Create a Conversations User
https://conversations.twilio.com/v1/Users
Parameters
Parameters in REST API format | |
---|---|
identity
Required
|
The application-defined string that uniquely identifies the resource's User within the Conversation Service. This value is often a username or an email address, and is case-sensitive. |
friendly_name
Optional
|
The string that you assigned to describe the resource. |
attributes
Optional
|
The JSON Object string that stores application-specific data. If attributes have not been set, |
role_sid
Optional
|
The SID of a service-level Role to assign to the user. |
x_twilio_webhook_enabled
Header
|
The X-Twilio-Webhook-Enabled HTTP request header |
Example 1
Fetch a specific User Resource
https://conversations.twilio.com/v1/Users/{Sid}
Parameters
Parameters in REST API format | |
---|---|
sid
Path
|
The SID of the User resource to fetch. This value can be either the |
Example 1
Read multiple ConversationUser resources
https://conversations.twilio.com/v1/Users
Example 1
Update a ConversationUser resource
https://conversations.twilio.com/v1/Users/{Sid}
Parameters
Parameters in REST API format | |
---|---|
sid
Path
|
The SID of the User resource to update. This value can be either the |
friendly_name
Optional
|
The string that you assigned to describe the resource. |
attributes
Optional
|
The JSON Object string that stores application-specific data. If attributes have not been set, |
role_sid
Optional
|
The SID of a service-level Role to assign to the user. |
x_twilio_webhook_enabled
Header
|
The X-Twilio-Webhook-Enabled HTTP request header |
Example 1
Delete an User resource
https://conversations.twilio.com/v1/Users/{Sid}
Parameters
Parameters in REST API format | |
---|---|
sid
Path
|
The SID of the User resource to delete. This value can be either the |
x_twilio_webhook_enabled
Header
|
The X-Twilio-Webhook-Enabled HTTP request header |
Example 1
Need some help?
We all do sometimes; code is hard. Get help now from our support team, or lean on the wisdom of the crowd by visiting Twilio's Stack Overflow Collective or browsing the Twilio tag on Stack Overflow.