Aller au contenu
Accueil » API SMS Octopush » Supprimer une liste

Supprimer une liste

DELETE
https://api.octopush.com/v1/public/contact-list/delete

Encodage : UTF-8

Authentification

Vos identifiants « api-key » et « api-login » doivent être ajoutés dans les headers.

Définition

Ce web-service vous permet de supprimer une liste de contacts.

Ce service est synchrone.

Paramètres particuliers

NomTypeDescription
list_namestringNom de la liste à supprimer.

Exemple Curl

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

Code à copier-coller

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

Retour Server en json

Succès : 204 NO CONTENT