This endpoint returns the Listings owned by the authenticated Account

GET /v1/Listings

This endpoint returns the Listings owned by the authenticated Account.

Responses

  • 200 application/json

    OK

    Hide headers attributes Show headers attributes
    • Access-Control-Allow-Origin string

      Specify the origin(s) allowed to access the resource

    • Access-Control-Allow-Methods string

      Specify the HTTP methods allowed when accessing the resource

    • Access-Control-Allow-Headers string

      Specify the headers allowed when accessing the resource

    • Access-Control-Allow-Credentials boolean

      Indicates whether the browser should include credentials

    • Access-Control-Expose-Headers string

      Headers exposed to the client

    Hide response attribute Show response attribute object
    • listings array[object]
GET /v1/Listings
curl \
 --request GET 'https://marketplace.twilio.com/v1/Listings' \
 --user "username:password"
Response examples (200)
{
  "listings": [
    {
      "tag": "Description1",
      "tagline": "aTagline1",
      "logo_url": "aUrl1",
      "logo_bg_color_hex": "#ff5722"
    },
    {
      "tag": "Description2",
      "tagline": "aTagline2",
      "logo_url": "aUrl2",
      "logo_bg_color_hex": "#ff5722"
    }
  ]
}