Skip to main content
POST
/
10dlc
/
brands
/
{brand_id}
/
campaigns
/
{campaign_id}
/
nudge
Nudge a carrier to review the campaign
curl --request POST \
  --url 'https://api.wavix.com/v1/10dlc/brands/{brand_id}/campaigns/{campaign_id}/nudge?appid=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nudge_intent": "REVIEW",
  "description": "Please review the campaign."
}
'
{
  "success": true
}

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

brand_id
string
required

Unique identifier of a Brand

Example:

"B9FXYNH"

campaign_id
string
required

Unique identifier of a Campaign

Example:

"CSJ4TV0"

Body

application/json

The nudge request

The nudge request

nudge_intent
string
required

The nudge intent. Use REVIEW to request action on a pending approval, or to APPEAL_REJECTION to submit an appeal for a rejected campaign.

Example:

"REVIEW"

description
string
required

The description of the nudge request

Example:

"Please review the campaign."

Response

success
boolean
required

Indicates a successful request

Example:

true