List brand registrations

GET /v1/a2p/BrandRegistrations

A Messaging Service resource to add and fetch Brand Registrations.

Query parameters

  • 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
    • data array[object]
      Hide data attributes Show data attributes
      • A2P Messaging Profile Bundle BundleSid

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

      • 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}$.

      • brand_feedback array[string] | null

        Brand feedback

        Values are TAX_ID, STOCK_SYMBOL, NONPROFIT, GOVERNMENT_ENTITY, or OTHERS.

      • brand_score integer | null

        Brand score

      • brand_type string | null

        Type of brand. One of: "STANDARD", "STARTER".

      • A2P Messaging Profile Bundle BundleSid

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

      • date_created string(date-time) | null

        The ISO 8601 date and time in GMT when the resource was created

      • date_updated string(date-time) | null

        The ISO 8601 date and time in GMT when the resource was last updated

      • failure_reason string | null

        A reason why brand registration has failed

      • government_entity boolean | null

        Government Entity

      • identity_status string | null

        Identity Status

        Values are SELF_DECLARED, UNVERIFIED, VERIFIED, or VETTED_VERIFIED.

      • mock boolean | null

        A boolean that specifies whether brand should be a mock or not. If true, brand will be registered as a mock brand. Defaults to false if no value is provided.

      • russell_3000 boolean | null

        Russell 3000

      • sid string | null

        A2P BrandRegistration Sid

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

      • Skip Automatic Secondary Vetting

      • status string | null

        Brand Registration status.

        Values are PENDING, APPROVED, FAILED, IN_REVIEW, or DELETED.

      • tax_exempt_status string | null

        Tax Exempt Status

      • tcr_id string | null

        Campaign Registry (TCR) Brand ID

      • url string(uri) | null

        The absolute URL of the Brand Registration

    • meta object
      Hide meta attributes Show meta attributes
GET /v1/a2p/BrandRegistrations
curl \
 -X GET https://messaging.twilio.com/v1/a2p/BrandRegistrations \
 --user "username:password"
Response examples (200)
{
  "data": [
    {
      "a2p_profile_bundle_sid": "string",
      "account_sid": "string",
      "brand_feedback": [
        "TAX_ID"
      ],
      "brand_score": 42,
      "brand_type": "string",
      "customer_profile_bundle_sid": "string",
      "date_created": "2023-05-04T09:42:00+00:00",
      "date_updated": "2023-05-04T09:42:00+00:00",
      "failure_reason": "string",
      "government_entity": true,
      "identity_status": "SELF_DECLARED",
      "links": {},
      "mock": true,
      "russell_3000": true,
      "sid": "string",
      "skip_automatic_sec_vet": true,
      "status": "PENDING",
      "tax_exempt_status": "string",
      "tcr_id": "string",
      "url": "https://example.com"
    }
  ],
  "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"
  }
}