This endpoint returns the data of a given Listing
This endpoint returns the data of a given Listing. To find a Listing's SID, use the Available Add-ons resource or view its Listing details page in the Console by visiting the Catalog or the My Listings tab and selecting the Listing.
GET
/v1/Listing/{Sid}
curl \
--request GET 'https://marketplace.twilio.com/v1/Listing/{Sid}' \
--user "username:password"
Response examples (200)
{
"sid": "XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://marketplace.twilio.com/v1/Listing/XBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"pricing": {
"body": "Basic plan - $10/month"
},
"support": {
"billing_email": "anEmail",
"billing_phone": "+1 888-888-8888",
"technical_email": "anEmail",
"technical_phone": "+1 888-888-8888",
"support_description": "aDescription",
"customer_support_email": "anEmail",
"customer_support_phone": "+1 888-888-8888"
},
"policies": {
"legal": "someOtherUrl",
"privacy": "someUrl"
},
"description": {
"body": "aBody",
"highlights": [
{
"title": "aTitle",
"description": "aDescription"
}
],
"code_samples": [
{
"code": "aCode",
"title": "aTitle",
"description": "aDescription"
}
]
},
"module_info": {
"tag": "Description",
"tagline": "aTagline",
"logo_url": "aUrl",
"logo_bg_color_hex": "#ff5722"
},
"configuration": {
"buttons": [
{
"url": "https://example.com",
"label": "Configurable button text",
"help_text": "The button text, url, and help text are now configurable via self service"
}
],
"notification_configuration": {
"callback_url": "https://example.com"
}
},
"documentation": {
"body": "aBody"
}
}