Skip to main content
POST
/
v3
/
10dlc
/
brands
/
{brand_id}
/
campaigns
/
{campaign_id}
/
nudge
Nudge a 10DLC Campaign review
curl --request POST \
  --url https://api.wavix.com/v3/10dlc/brands/{brand_id}/campaigns/{campaign_id}/nudge \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "nudge_intent": "REVIEW",
  "description": "Please review the campaign."
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer token using appid (Authorization: Bearer )

Path Parameters

brand_id
string
required

Brand ID.

Example:

"B9FXYNH"

campaign_id
string
required

Campaign ID.

Example:

"CSJ4TV0"

Body

application/json

Nudge request.

The nudge request

nudge_intent
string
required

Nudge intent. Allowed values: REVIEW, APPEAL_REJECTION. Use nudge_intent to specify the action: - REVIEW: Request review for a pending Campaign. - APPEAL_REJECTION: Appeal a rejected Campaign.

Example:

"REVIEW"

description
string
required

Description of the nudge request.

Example:

"Please review the campaign."

Response

Campaign nudge submitted.

success
boolean
required
Example:

true