import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.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);{
"appealed_at": "2025-08-06T15:30:45.123456"
}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.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const response = await client.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);{
"appealed_at": "2025-08-06T15:30:45.123456"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The Telnyx campaign identifier
"5eb13888-32b7-4cab-95e6-d834dde21d64"
Appeal request payload
Detailed explanation of why the campaign should be reconsidered and what changes have been made to address the rejection reason.
"The website has been updated to include the required privacy policy and terms of service."
Appeal recorded successfully. Campaign status updated to TCR_ACCEPTED for manual compliance review.
Timestamp when the appeal was submitted
Was this page helpful?