List service

GET /v1/Services

TODO: Resource-level docs

Query parameters

  • FriendlyName string

    The string that identifies the Service resources to read.

  • PageSize integer

    How many resources to return in each list page. The default is 50, and the maximum is 1000.

    Minimum value is 1, maximum value is 1000.

Responses

  • 200

    OK

    Hide response attributes Show response attributes object
    • meta object
      Hide meta attributes Show meta attributes object
      • first_page_url string(uri)
      • key string
      • next_page_url string(uri)
      • page integer
      • page_size integer
      • previous_page_url string(uri)
      • url string(uri)
    • services array[object]
      Hide services attributes Show services attributes array[object]
      • account_sid string | null

        The SID of the Account that created the resource

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

      • alexa_skill_id string | null

        Deprecated

      • apn_credential_sid string | null

        The SID of the Credential to use for APN Bindings

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

      • date_created string(date-time) | null

        The RFC 2822 date and time in GMT when the resource was created

      • date_updated string(date-time) | null

        The RFC 2822 date and time in GMT when the resource was last updated

      • default_alexa_notification_protocol_version string | null

        Deprecated

      • default_apn_notification_protocol_version string | null

        The protocol version to use for sending APNS notifications

      • default_fcm_notification_protocol_version string | null

        The protocol version to use for sending FCM notifications

      • default_gcm_notification_protocol_version string | null

        The protocol version to use for sending GCM notifications

      • delivery_callback_enabled boolean | null

        Enable delivery callbacks

      • delivery_callback_url string | null

        Webhook URL

      • facebook_messenger_page_id string | null

        Deprecated

      • fcm_credential_sid string | null

        The SID of the Credential to use for FCM Bindings

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

      • friendly_name string | null

        The string that you assigned to describe the resource

      • gcm_credential_sid string | null

        The SID of the Credential to use for GCM Bindings

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

      • log_enabled boolean | null

        Whether to log notifications

      • messaging_service_sid string | null

        The SID of the Messaging Service to use for SMS Bindings

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

      • sid string | null

        The unique string that identifies the resource

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

      • url string(uri) | null

        The absolute URL of the Service resource

GET /v1/Services
curl \
 -X GET https://notify.twilio.com/v1/Services \
 --user "username:password"
Response examples (200)
{
  "meta": {
    "first_page_url": "https://example.com",
    "key": "string",
    "next_page_url": "https://example.com",
    "page": 42,
    "page_size": 42,
    "previous_page_url": "https://example.com",
    "url": "https://example.com"
  },
  "services": [
    {
      "account_sid": "string",
      "alexa_skill_id": "string",
      "apn_credential_sid": "string",
      "date_created": "2023-05-04T09:42:00+00:00",
      "date_updated": "2023-05-04T09:42:00+00:00",
      "default_alexa_notification_protocol_version": "string",
      "default_apn_notification_protocol_version": "string",
      "default_fcm_notification_protocol_version": "string",
      "default_gcm_notification_protocol_version": "string",
      "delivery_callback_enabled": true,
      "delivery_callback_url": "string",
      "facebook_messenger_page_id": "string",
      "fcm_credential_sid": "string",
      "friendly_name": "string",
      "gcm_credential_sid": "string",
      "links": {},
      "log_enabled": true,
      "messaging_service_sid": "string",
      "sid": "string",
      "url": "https://example.com"
    }
  ]
}
Response examples (200)
{
  "meta": {
    "first_page_url": "https://example.com",
    "key": "string",
    "next_page_url": "https://example.com",
    "page": 42,
    "page_size": 42,
    "previous_page_url": "https://example.com",
    "url": "https://example.com"
  },
  "services": [
    {
      "account_sid": "string",
      "alexa_skill_id": "string",
      "apn_credential_sid": "string",
      "date_created": "2025-05-04T09:42:00Z",
      "date_updated": "2025-05-04T09:42:00Z",
      "default_alexa_notification_protocol_version": "string",
      "default_apn_notification_protocol_version": "string",
      "default_fcm_notification_protocol_version": "string",
      "default_gcm_notification_protocol_version": "string",
      "delivery_callback_enabled": true,
      "delivery_callback_url": "string",
      "facebook_messenger_page_id": "string",
      "fcm_credential_sid": "string",
      "friendly_name": "string",
      "gcm_credential_sid": "string",
      "links": {},
      "log_enabled": true,
      "messaging_service_sid": "string",
      "sid": "string",
      "url": "https://example.com"
    }
  ]
}