Skip to content
Home » Octopush Gateway SMS API » Create a contact list

Create a contact list

POST
https://api.octopush.com/v1/public/contact-list/create

Encodage : UTF-8

Authentification

Your “api-key” and “api-login” identifiers must be added in the headers.

Definition

Allows you to create a blank contact list.

Special parameters

NameTypeDescription
list_namestringName of the list to be created.

Example curl

curl -X POST \ 
'https://api.octopush.com/v1/public/contact-list/create' \ 
-H 'Content-Type: application/json' \ 
-H 'api-login: ******@email.org' \ 
-H 'api-key: ************' \ 
-H 'cache-control: no-cache' \ 
-d '{
  "list_name": "my_list"
}'

Command to copy/paste

curl -X POST 'https://api.octopush.com/v1/public/contact-list/create' -H 'Content-Type: application/json' -H 'api-login: ******@email.org' -H 'api-key: ************' -H 'cache-control: no-cache' -d '{"list_name": "my_list"}'

JSON Server Response

Success : 201 CREATED