> ## Documentation Index
> Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List RCS agent carrier approvals

> Lists carrier approval records for an RCS agent. The provider may expose per-carrier, hub-level, or bot-level approval status.



## OpenAPI

````yaml /openapi/source/external/messaging/rcs-registration.json get /rcs/agents/{id}/carrier_approvals
openapi: 3.1.0
info:
  title: Telnyx RCS Registration API
  description: >-
    Create RCS brands and agents, submit them for external review, manage test
    devices, and track carrier launch.
  version: 1.0.0
  contact:
    email: support@telnyx.com
  x-latency-category: responsive
  x-endpoint-cost: light
servers:
  - url: https://api.telnyx.com/v2
    description: Telnyx API v2
security:
  - bearerAuth: []
tags:
  - name: RCS Brands
    description: Manage the legal business entities that operate RCS agents.
  - name: RCS Agents
    description: Manage RCS agent registration, testing, verification, and launch.
paths:
  /rcs/agents/{id}/carrier_approvals:
    get:
      tags:
        - RCS Agents
      summary: List RCS agent carrier approvals
      description: >-
        Lists carrier approval records for an RCS agent. The provider may expose
        per-carrier, hub-level, or bot-level approval status.
      operationId: ListRcsAgentCarrierApprovals
      parameters:
        - $ref: '#/components/parameters/AgentId'
      responses:
        '200':
          description: Carrier approval records for the agent.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CarrierApprovalResponse'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '404':
          $ref: '#/components/responses/NotFound'
      x-codeSamples:
        - lang: JavaScript
          source: >-
            import Telnyx from 'telnyx';


            const client = new Telnyx({
              apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
            });


            const response = await
            client.rcs.agents.retrieveCarrierApprovals('id');


            console.log(response.data);
        - lang: Python
          source: |
            import os
            from telnyx import Telnyx

            client = Telnyx(
                api_key=os.environ.get("TELNYX_API_KEY"),  # This is the default and can be omitted
            )
            response = client.rcs.agents.retrieve_carrier_approvals(
                "id",
            )
            print(response.data)
        - lang: Go
          source: "package main\n\nimport (\n\t\"context\"\n\t\"fmt\"\n\n\t\"github.com/team-telnyx/telnyx-go\"\n\t\"github.com/team-telnyx/telnyx-go/option\"\n)\n\nfunc main() {\n\tclient := telnyx.NewClient(\n\t\toption.WithAPIKey(\"My API Key\"),\n\t)\n\tresponse, err := client.Rcs.Agents.GetCarrierApprovals(\n\t\tcontext.TODO(),\n\t\t\"id\",\n\t)\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", response.Data)\n}\n"
        - lang: Java
          source: |-
            package com.telnyx.sdk.example;

            import com.telnyx.sdk.client.TelnyxClient;
            import com.telnyx.sdk.client.okhttp.TelnyxOkHttpClient;

            public final class Main {
                private Main() {}

                public static void main(String[] args) {
                    TelnyxClient client = TelnyxOkHttpClient.fromEnv();

                    var response = client.rcs().agents().retrieveCarrierApprovals("id");
                }
            }
        - lang: Ruby
          source: |-
            require "telnyx"

            telnyx = Telnyx::Client.new(api_key: "My API Key")

            response = telnyx.rcs.agents.retrieve_carrier_approvals("id")

            puts(response)
        - lang: PHP
          source: >-
            <?php


            require_once dirname(__DIR__) . '/vendor/autoload.php';


            use Telnyx\Client;

            use Telnyx\Core\Exceptions\APIException;


            $client = new Client(apiKey: getenv('TELNYX_API_KEY') ?: 'My API
            Key');


            try {
              $response = $client->rcs->agents->retrieveCarrierApprovals(
                'id',
              );

              var_dump($response);
            } catch (APIException $e) {
              echo $e->getMessage();
            }
        - lang: CLI
          source: |-
            telnyx rcs:agents retrieve-carrier-approvals \
              --api-key 'My API Key' \
              --id id
components:
  parameters:
    AgentId:
      name: id
      in: path
      required: true
      description: The Telnyx-assigned agent identifier.
      schema:
        type: string
        format: uuid
  schemas:
    CarrierApprovalResponse:
      type: object
      additionalProperties: false
      properties:
        approval_id:
          type: string
          format: uuid
        scope_type:
          $ref: '#/components/schemas/CarrierApprovalScope'
        status:
          $ref: '#/components/schemas/CarrierApprovalStatus'
        carrier:
          type:
            - string
            - 'null'
        submitted_at:
          type:
            - string
            - 'null'
          format: date-time
        approved_at:
          type:
            - string
            - 'null'
          format: date-time
        rejected_reason:
          type:
            - string
            - 'null'
      required:
        - approval_id
        - scope_type
        - status
        - carrier
        - submitted_at
        - approved_at
        - rejected_reason
      example:
        approval_id: 33333333-3333-4333-8333-333333333333
        scope_type: hub
        status: SUBMITTED
        carrier: null
        submitted_at: '2026-08-10T12:00:00Z'
        approved_at: null
        rejected_reason: null
    CarrierApprovalScope:
      type: string
      enum:
        - carrier
        - hub
        - bot
    CarrierApprovalStatus:
      type: string
      enum:
        - PENDING
        - SUBMITTED
        - APPROVED
        - REJECTED
    ErrorResponse:
      type: object
      properties:
        detail:
          type: string
        errors:
          type: array
          items:
            type: object
            additionalProperties: true
      additionalProperties: true
      example:
        detail: The requested RCS resource was not found.
  responses:
    Unauthorized:
      description: The request is not authenticated.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: >-
        The resource does not exist, is not owned by the organization, or the
        provider does not support the requested capability.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API key

````