v1
latestOpenAPI 3.0.02026-07-26870415.2 KBworkspaces
List configured outbound senders
Returns the workspace's configured outbound email, SMS, and WhatsApp senders. Use these sender_id values with proactive send_contact_message requests when you need to choose the exact sender.
get/v1/workspaces/{id}/senders
Path parameters
idstring required
Workspace identifier.
Example:j57demo8f8x7c9v0n2q4r6t8y1u3i5o
Response
Configured outbound senders
Example response
{
"data": [
{
"id": "gmail_account:team@conduit.ai",
"workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
"channel": "email",
"provider_type": "gmail_account",
"value": "team@conduit.ai",
"display_name": "team@conduit.ai",
"is_default": true
},
{
"id": "phone_number_config:+14155550999",
"workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
"channel": "sms",
"provider_type": "phone_number_config",
"value": "+14155550999",
"display_name": "+14155550999",
"is_default": true
},
{
"id": "whatsapp_number:+14155550999",
"workspace_id": "j57demo8f8x7c9v0n2q4r6t8y1u3i5o",
"channel": "whatsapp",
"provider_type": "whatsapp_number",
"value": "+14155550999",
"display_name": "WhatsApp Front Desk",
"is_default": false
}
]
}