Fetch a specific Export Configuration

GET /v1/Exports/{ResourceType}/Configuration

TODO: Resource-level docs

Fetch a specific Export Configuration.

Path parameters

  • ResourceType string Required

    The type of communication – Messages, Calls, Conferences, and Participants

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • enabled boolean | null

      Whether files are automatically generated

    • resource_type string | null

      The type of communication – Messages, Calls, Conferences, and Participants

    • url string(uri) | null

      The URL of this resource.

    • webhook_method string | null

      Whether to GET or POST to the webhook url

    • webhook_url string(uri) | null

      URL targeted at export

GET /v1/Exports/{ResourceType}/Configuration
curl \
 -X GET https://bulkexports.twilio.com/v1/Exports/{ResourceType}/Configuration \
 --user "username:password"
Response examples (200)
{
  "enabled": true,
  "resource_type": "string",
  "url": "https://example.com",
  "webhook_method": "string",
  "webhook_url": "https://example.com"
}