Fetch a participant of the conversation
A Participant resource represents a member of the conversation.
Fetch a participant of the conversation
Path parameters
-
The unique ID of the Conversation for this participant.
-
A 34 character string that uniquely identifies this resource. Alternatively, you can pass a Participant's
identity
rather than the SID.
GET
/v1/Conversations/{ConversationSid}/Participants/{Sid}
curl \
--request GET 'https://conversations.twilio.com/v1/Conversations/{ConversationSid}/Participants/{Sid}' \
--user "username:password"
Response examples (200)
Fetch
{
"sid": "MBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://conversations.twilio.com/v1/Conversations/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Participants/MBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"identity": null,
"role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"attributes": "{ \"role\": \"driver\" }",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"date_created": "2016-03-24T21:05:50Z",
"date_updated": "2016-03-24T21:05:50Z",
"conversation_sid": "CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"messaging_binding": {
"type": "sms",
"address": "+15558675310",
"proxy_address": "+15017122661"
},
"last_read_timestamp": null,
"last_read_message_index": null
}
{
"sid": "MBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://conversations.twilio.com/v1/Conversations/CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/Participants/MBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"identity": "alice",
"role_sid": "RLaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"attributes": "{ \"role\": \"driver\" }",
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"date_created": "2016-03-24T21:05:50Z",
"date_updated": "2016-03-24T21:05:50Z",
"conversation_sid": "CHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"messaging_binding": {
"type": "sms",
"address": "+15558675310",
"proxy_address": "+15017122661"
},
"last_read_timestamp": null,
"last_read_message_index": null
}