Retrieve details of a specific sender by its unique identifier.
A Sender resource represents a messaging channel sender of WhatsApp.
Retrieve details of a specific sender by its unique identifier.
GET
/v2/Channels/Senders/{Sid}
curl \
--request GET 'https://messaging.twilio.com/v2/Channels/Senders/{Sid}' \
--user "username:password"
Response examples (200)
Fetch
{
"sid": "XEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"url": "https://messaging.twilio.com/v2/Channels/Senders/XEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"status": "ONLINE",
"profile": {
"name": "Example Profile Name",
"about": "This is an example about text.",
"emails": [
{
"email": "email@email.com",
"label": "Email"
}
],
"address": "123 Example St, Example City, EX 12345",
"logo_url": "https://logo_url.com",
"vertical": "Automotive",
"websites": [
{
"label": "Website",
"website": "https://website.com"
},
{
"label": "Website",
"website": "http://website2.com"
}
],
"description": "This is an example description."
},
"webhook": {
"callback_url": "https://callback.com",
"fallback_url": "https://fallback.com",
"callback_method": "POST",
"fallback_method": "POST",
"status_callback_url": "https://statuscallback.com",
"status_callback_method": "POST"
},
"sender_id": "whatsapp:+999999999XX",
"properties": {
"quality_rating": "HIGH",
"messaging_limit": "10K Customers/24hr"
},
"configuration": {
"waba_id": "1234567XXX",
"verification_code": null,
"verification_method": null,
"voice_application_sid": "APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
"offline_reasons": null
}
{
"sid": "XEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"url": "https://messaging.twilio.com/v2/Channels/Senders/XEXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX",
"status": "OFFLINE",
"profile": {
"name": "Example Profile Name",
"about": "This is an example about text.",
"emails": [
{
"email": "email@email.com",
"label": "Email"
}
],
"address": "123 Example St, Example City, EX 12345",
"logo_url": "https://logo_url.com",
"vertical": "Automotive",
"websites": [
{
"label": "Website",
"website": "https://website.com"
},
{
"label": "Website",
"website": "http://website2.com"
}
],
"description": "This is an example description."
},
"webhook": {
"callback_url": "https://callback.com",
"fallback_url": "https://fallback.com",
"callback_method": "POST",
"fallback_method": "POST",
"status_callback_url": "https://statuscallback.com",
"status_callback_method": "POST"
},
"sender_id": "whatsapp:+999999999XX",
"properties": {
"quality_rating": "HIGH",
"messaging_limit": "10K Customers/24hr"
},
"configuration": {
"waba_id": "1234567XXX",
"verification_code": null,
"verification_method": null,
"voice_application_sid": "APXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
"offline_reasons": [
{
"code": "30008",
"message": "No delivery",
"more_info": "https://www.twilio.com/docs/api/errors/30008"
}
]
}