For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get 10DLC Campaign Numbers

GET or POST Request

https://v1.api19.com/campaigns/campaign/numbers

Get numbers associated with a specific 10DLC campaign

Curl (POST)
curl https://v1.api19.com/campaigns/campaign/numbers \
 -d 'key=api_token' \
 -d 'id=12345'
Curl (GET)
curl https://v1.api19.com/campaigns/campaign/numbers?key=apikey&id=12345
Response (application/json)
{
	"status": "ok",
	"data": {
		"registryId": [ 
			'5555555555',
			'6666666666',
			'7777777777'
		]
	}
}

Parameters

  • id (required) - Campaign ID

Last updated