Retrieve a list of Legacy Contents belonging to the account used to make the request
A Legacy Content resource represents legacy rich messaging content.
Retrieve a list of Legacy Contents belonging to the account used to make the request
GET
/v1/LegacyContent
curl \
--request GET 'https://content.twilio.com/v1/LegacyContent' \
--user "username:password"
Response examples (200)
Read empty
{
"meta": {
"key": "contents",
"url": "https://content.twilio.com/v1/LegacyContent?PageSize=10&Page=0",
"page": 0,
"page_size": 10,
"next_page_url": null,
"first_page_url": "https://content.twilio.com/v1/LegacyContent?PageSize=10&Page=0",
"previous_page_url": null
},
"contents": []
}
{
"meta": {
"key": "contents",
"url": "https://content.twilio.com/v1/LegacyContent?PageSize=20&Page=0",
"page": 0,
"page_size": 20,
"next_page_url": null,
"first_page_url": "https://content.twilio.com/v1/LegacyContent?PageSize=20&Page=0",
"previous_page_url": null
},
"contents": [
{
"sid": "HXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://content.twilio.com/v1/LegacyContent",
"types": {
"twilio/text": {
"body": "Foo Bar Co is located at 39.7392, 104.9903"
},
"twilio/location": {
"label": "Foo Bar Co",
"latitude": 39.7392,
"longitude": 104.9903
}
},
"language": "en",
"variables": {
"name": "foo"
},
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"legacy_body": "a body",
"date_created": "2015-07-30T19:00:00Z",
"date_updated": "2015-07-30T19:00:00Z",
"friendly_name": "Some content",
"legacy_template_name": "legacy_template_1"
},
{
"sid": "HXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://content.twilio.com/v1/LegacyContent",
"types": {
"twilio/text": {
"body": "Foo Bar Co is located at 39.7392, 104.9903"
},
"twilio/location": {
"label": "Foo Bar Co",
"latitude": 39.7392,
"longitude": 104.9903
}
},
"language": "en",
"variables": {
"name": "foo"
},
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"legacy_body": "another body",
"date_created": "2015-07-30T19:00:00Z",
"date_updated": "2015-07-30T19:00:00Z",
"friendly_name": "Anotha content",
"legacy_template_name": "legacy_template_2"
},
{
"sid": "HXaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"url": "https://content.twilio.com/v1/LegacyContent",
"types": {
"twilio/text": {
"body": "Foo Bar Co is located at 39.7392, 104.9903"
},
"twilio/location": {
"label": "Foo Bar Co",
"latitude": 39.7392,
"longitude": 104.9903
}
},
"language": "en",
"variables": {
"name": "foo"
},
"account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"legacy_body": "a third body",
"date_created": "2015-07-30T19:00:00Z",
"date_updated": "2015-07-30T19:00:00Z",
"friendly_name": "Third content",
"legacy_template_name": "legacy_template_3"
}
]
}