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/v3/10dlc/brands/{brand_id}/campaigns/{campaign_id}/nudge \
  --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

Use this request to nudge an intended party to review if the approval process is delayed or appeal if the campaign has been rejected. Set the nudge_intent parameter to REVIEW to request action on a pending approval, or to APPEAL_REJECTION to submit an appeal for a rejected campaign. 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

I