Skip to main content
GET
/
10dlc
/
brands
/
campaigns
List all 10DLC Campaigns on your account
curl --request GET \
  --url https://api.wavix.com/v3/10dlc/brands/campaigns
{
  "items": [
    {
      "affiliate_marketing": false,
      "age_gated": false,
      "auto_renewal": false,
      "brand_id": "BM20QP9",
      "campaign_id": "CKLCK95",
      "created_at": "2024-08-14T11:57:41.000Z",
      "description": "Our campaign aims to …",
      "direct_lending": false,
      "embedded_link_sample": null,
      "embedded_links": false,
      "embedded_phones": false,
      "feedback": null,
      "help": true,
      "help_keywords": "help",
      "help_message": "For help, please visit www.site.com. To opt-out, reply STOP.",
      "last_bill_date": "2024-08-14T11:57:42.000Z",
      "mock": false,
      "monthly_fee": "10.0",
      "name": "My first campaign",
      "next_bill_date": "2024-11-14T00:00:00.000Z",
      "optin": true,
      "optin_keywords": "begin,start",
      "optin_message": "You are now opted-in for help please reply HELP, to stop please reply STOP",
      "optin_workflow": "Our SMS ...",
      "optout": true,
      "optout_keywords": "stop,quit,unsubscribe",
      "optout_message": "You are now opted out and will receive no further messages",
      "privacy_policy": "https://site.com/privacy-policy",
      "sample1": "Your verification code is XXXXXX",
      "sample2": "XXXX is your verification code",
      "sample3": null,
      "sample4": null,
      "sample5": null,
      "status": "APPROVED",
      "terms_conditions": "https://site.com/terms-and-conditions",
      "updated_at": "2024-08-14T11:57:47.000Z",
      "usecase": "2FA",
      "phone_numbers": [
        "14358684439",
        "13193337776",
        "12673296046"
      ]
    }
  ],
  "pagination": {
    "current_page": 1,
    "per_page": 25,
    "total": 1,
    "total_pages": 1
  }
}

Authorizations

appid
string
query
required

An API key to authorize your request

Query Parameters

name
string

Filter results by the Campaign name

Example:

"Name"

usecase
string

Filter results by the use case

Example:

"2FA"

status
string

Filter results by Campaign status

Example:

"APPROVED"

mock
boolean
default:false

Show only mock Campaigns

Example:

true

created_before
string<date>

Filter results by specifying the end date for the Campaign creation date range in the yyyy-mm-dd format

Example:

"2024-08-22T00:00:00.000Z"

created_after
string<date>

Filter results by specifying the start date for the Campaign creation date range in the yyyy-mm-dd format

Example:

"2024-08-22T00:00:00.000Z"

page
integer

The requested page

Example:

1

per_page
integer

The number of records per page

Example:

25

Response

A list of 10DLC Campaigns

items
10DLCCampaign · object[]
required

A paginated list of 10DLC Campaign matching the filter criteria

pagination
object
required

Pagination details

I