> ## 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.

# Submit campaign appeal for manual review

> Submits an appeal for rejected native campaigns in TELNYX_FAILED or MNO_REJECTED status. The appeal is recorded for manual compliance team review and the campaign status is reset to TCR_ACCEPTED. Note: Appeal forwarding is handled manually to allow proper review before incurring upstream charges.



## OpenAPI

````yaml https://telnyx-openapi-ng.s3.us-east-1.amazonaws.com/messaging-10dlc/campaigns.yml post /10dlc/campaign/{campaignId}/appeal
openapi: 3.1.0
info:
  title: Telnyx 10DLC Campaigns API
  version: 2.0.0
  description: API for 10DLC campaign management.
  contact:
    email: support@telnyx.com
servers:
  - url: https://api.telnyx.com/v2
security:
  - bearerAuth: []
paths:
  /10dlc/campaign/{campaignId}/appeal:
    post:
      tags:
        - Campaign
      summary: Submit campaign appeal for manual review
      description: >-
        Submits an appeal for rejected native campaigns in TELNYX_FAILED or
        MNO_REJECTED status. The appeal is recorded for manual compliance team
        review and the campaign status is reset to TCR_ACCEPTED. Note: Appeal
        forwarding is handled manually to allow proper review before incurring
        upstream charges.
      operationId: AppealCampaign
      parameters:
        - name: campaignId
          in: path
          description: The Telnyx campaign identifier
          required: true
          schema:
            type: string
            format: uuid
            example: 5eb13888-32b7-4cab-95e6-d834dde21d64
      requestBody:
        description: Appeal request payload
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - appeal_reason
              properties:
                appeal_reason:
                  type: string
                  description: >-
                    Detailed explanation of why the campaign should be
                    reconsidered and what changes have been made to address the
                    rejection reason.
                  example: >-
                    The website has been updated to include the required privacy
                    policy and terms of service.
      responses:
        '200':
          description: >-
            Appeal recorded successfully. Campaign status updated to
            TCR_ACCEPTED for manual compliance review.
          content:
            application/json:
              schema:
                type: object
                properties:
                  appealed_at:
                    type: string
                    format: date-time
                    description: Timestamp when the appeal was submitted
              example:
                appealed_at: '2025-08-06T15:30:45.123456+00:00'
        '400':
          description: Campaign not in appealable status or invalid request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/10dlc_Error'
        '404':
          description: Campaign not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/10dlc_Error'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
        4XX:
          $ref: '#/components/responses/10dlc_GenericErrorResponse'
      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.messaging10dlc.campaign.submitAppeal(
              '5eb13888-32b7-4cab-95e6-d834dde21d64',
              {
                appeal_reason:
                  'The website has been updated to include the required privacy policy and terms of service.',
              },
            );

            console.log(response.appealed_at);
        - 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.messaging_10dlc.campaign.submit_appeal(
                campaign_id="5eb13888-32b7-4cab-95e6-d834dde21d64",
                appeal_reason="The website has been updated to include the required privacy policy and terms of service.",
            )
            print(response.appealed_at)
        - 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.Messaging10dlc.Campaign.SubmitAppeal(\n\t\tcontext.TODO(),\n\t\t\"5eb13888-32b7-4cab-95e6-d834dde21d64\",\n\t\ttelnyx.Messaging10dlcCampaignSubmitAppealParams{\n\t\t\tAppealReason: \"The website has been updated to include the required privacy policy and terms of service.\",\n\t\t},\n\t)\n\tif err != nil {\n\t\tpanic(err.Error())\n\t}\n\tfmt.Printf(\"%+v\\n\", response.AppealedAt)\n}\n"
        - lang: Java
          source: >-
            package com.telnyx.sdk.example;


            import com.telnyx.sdk.client.TelnyxClient;

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

            import
            com.telnyx.sdk.models.messaging10dlc.campaign.CampaignSubmitAppealParams;

            import
            com.telnyx.sdk.models.messaging10dlc.campaign.CampaignSubmitAppealResponse;


            public final class Main {
                private Main() {}

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

                    CampaignSubmitAppealParams params = CampaignSubmitAppealParams.builder()
                        .campaignId("5eb13888-32b7-4cab-95e6-d834dde21d64")
                        .appealReason("The website has been updated to include the required privacy policy and terms of service.")
                        .build();
                    CampaignSubmitAppealResponse response = client.messaging10dlc().campaign().submitAppeal(params);
                }
            }
        - lang: Ruby
          source: |-
            require "telnyx"

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

            response = telnyx.messaging_10dlc.campaign.submit_appeal(
              "5eb13888-32b7-4cab-95e6-d834dde21d64",
              appeal_reason: "The website has been updated to include the required privacy policy and terms of service."
            )

            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->messaging10dlc->campaign->submitAppeal(
                '5eb13888-32b7-4cab-95e6-d834dde21d64',
                appealReason: 'The website has been updated to include the required privacy policy and terms of service.',
              );

              var_dump($response);
            } catch (APIException $e) {
              echo $e->getMessage();
            }
        - lang: CLI
          source: |-
            telnyx messaging-10dlc:campaign submit-appeal \
              --api-key 'My API Key' \
              --campaign-id 5eb13888-32b7-4cab-95e6-d834dde21d64 \
              --appeal-reason 'The website has been updated to include the required privacy policy and terms of service.'
components:
  schemas:
    10dlc_Error:
      required:
        - code
        - title
      type: object
      properties:
        code:
          type: string
        title:
          type: string
        detail:
          type: string
        source:
          type: object
          properties:
            pointer:
              description: JSON pointer (RFC6901) to the offending entity.
              type: string
            parameter:
              description: Indicates which query parameter caused the error.
              type: string
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      title: ValidationError
      required:
        - loc
        - msg
        - type
      type: object
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
    10dlc_Errors:
      properties:
        errors:
          type: array
          items:
            $ref: '#/components/schemas/10dlc_Error'
      type: object
  responses:
    10dlc_GenericErrorResponse:
      description: Generic response error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/10dlc_Errors'
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http

````