List user binding

GET /v2/Services/{ServiceSid}/Users/{UserSid}/Bindings

TODO: Resource-level docs

Path parameters

Query parameters

  • BindingType array[string]
  • 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
    • bindings array[object]
      Hide bindings attributes Show bindings attributes
      • account_sid string | null

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

      • binding_type string | null

        Values are gcm, apn, or fcm.

      • credential_sid string | null

        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
      • date_updated string(date-time) | null
      • endpoint string | null
      • identity string | null
      • message_types array[string] | null
      • service_sid string | null

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

      • sid string | null

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

      • url string(uri) | null
      • user_sid string | null

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

    • meta object
      Hide meta attributes Show meta attributes
GET /v2/Services/{ServiceSid}/Users/{UserSid}/Bindings
curl \
 -X GET https://ip-messaging.twilio.com/v2/Services/{ServiceSid}/Users/{UserSid}/Bindings \
 --user "username:password"
Response examples (200)
{
  "bindings": [
    {
      "account_sid": "string",
      "binding_type": "gcm",
      "credential_sid": "string",
      "date_created": "2023-05-04T09:42:00+00:00",
      "date_updated": "2023-05-04T09:42:00+00:00",
      "endpoint": "string",
      "identity": "string",
      "message_types": [
        "string"
      ],
      "service_sid": "string",
      "sid": "string",
      "url": "https://example.com",
      "user_sid": "string"
    }
  ],
  "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"
  }
}