Get Conversation Channel
GET/locations/:locationId/conversationChannels/:type
Get the conversation channel providers configured for a location by type (SMS or Email)
Request
Version stringrequired
API Version
Available options
v3locationId stringrequired
Location Id
type stringrequired
Channel type to retrieve providers for
Available options
SMSEmailRetrieved all the conversation channels
- application/json
- Schema
- Example (auto)
Schema
conversationChannelobjectrequired
{
"conversationChannel": {
"SMS": [
{
"conversationProvider": {
"_id": "twilio_provider",
"name": "Twilio",
"type": "SMS",
"default": true
}
}
],
"Email": [
{
"conversationProvider": {
"_id": "twilio_provider",
"name": "Twilio",
"type": "SMS",
"default": true
}
}
]
}
}