Fetch the global configuration of conversations on your account

GET /v1/Configuration

The Configuration resource manages a set of account-level settings applicable to the Conversations API.

Fetch the global configuration of conversations on your account

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • account_sid string | null

      The SID of the Account responsible for this configuration.

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

    • The SID of the default Conversation Service that every new conversation is associated with.

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

    • Default ISO8601 duration when conversation will be switched to closed state.

    • Default ISO8601 duration when conversation will be switched to inactive state.

    • The SID of the default Messaging Service that every new conversation is associated with.

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

    • url string(uri) | null

      An absolute URL for this global configuration.

GET /v1/Configuration
curl \
 -X GET https://conversations.twilio.com/v1/Configuration \
 --user "username:password"
Response examples (200)
{
  "account_sid": "string",
  "default_chat_service_sid": "string",
  "default_closed_timer": "string",
  "default_inactive_timer": "string",
  "default_messaging_service_sid": "string",
  "links": {},
  "url": "https://example.com"
}