Fetch plugin release

GET /v1/PluginService/Releases/{Sid}

Headers

  • Flex-Metadata string

    The Flex-Metadata HTTP request header

Path parameters

  • Sid string Required

    The SID of the Flex Plugin Release resource to fetch.

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 attributes Show response attributes object
    • sid string | null

      The unique string that we created to identify the Plugin Release resource.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^FK[0-9a-fA-F]{32}$.

    • account_sid string | null

      The SID of the Account that created the Plugin Release resource and owns this resource.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^AC[0-9a-fA-F]{32}$.

    • configuration_sid string | null

      The SID of the Plugin Configuration resource to release.

      Minimum length is 34, maximum length is 34. Format should match the following pattern: ^FJ[0-9a-fA-F]{32}$.

    • date_created string(date-time) | null

      The date and time in GMT when the Flex Plugin Release was created specified in ISO 8601 format.

    • url string(uri) | null

      The absolute URL of the Plugin Release resource.

GET /v1/PluginService/Releases/{Sid}
curl \
 --request GET 'https://flex-api.twilio.com/v1/PluginService/Releases/{Sid}' \
 --user "username:password" \
 --header "Flex-Metadata: string"
Response examples (200)
{
  "sid": "FKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "url": "https://flex-api.twilio.com/v1/PluginService/Releases/FKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "date_created": "2020-01-10T20:00:00Z",
  "configuration_sid": "FJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}
{
  "sid": "FKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "url": "https://flex-api.twilio.com/v1/PluginService/Releases/FKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "account_sid": "ACaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
  "date_created": "2020-01-10T20:00:00Z",
  "configuration_sid": "FJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
}