API SMS

Intégrez Primotexto à vos applications grâce à notre puissante API SMS.

  >  
Contacts  >  





Supprimer une colonne personnalisée dans une liste

Requête à envoyer

URL

https://api.primotexto.com/v2/lists/533e9f59e4b05d2efeb6f1b2/fields/533e9f59e4b05d2efeb6f1b5

HTTP METHOD

DELETE

HEADERS

X-Primotexto-ApiKey: YOUR_API_KEY

Retour de l'API


HEADERS

HTTP/1.1 204 No Content Date: Fri, 08 Jan 2016 15:11:02 GMT Server: Apache Content-Length: 0
// Download library -> https://www.primotexto.com/api/librairies/latest-php.asp require_once 'primotexto-api-php/baseManager.class.php'; // Authentication authenticationManager::setApiKey('YOUR_API_KEY'); // Delete FieldsManager::delField("533e9f59e4b05d2efeb6f1b5");
curl -X DELETE \ -H "X-Primotexto-ApiKey: YOUR_API_KEY" \ https://api.primotexto.com/v2/lists/533e9f59e4b05d2efeb6f1b2/fields/533e9f59e4b05d2efeb6f1b5
// Download library -> JDK 1.5 : https://www.primotexto.com/api/librairies/latest-jdk-1.5.zip // Download library -> JDK 1.6 : https://www.primotexto.com/api/librairies/latest-jdk-1.6.zip // Download library -> JDK 1.7 : https://www.primotexto.com/api/librairies/latest-jdk-1.7.zip import com.primotexto.*; // Authentication AuthenticationManager.setApiKey("YOUR_API_KEY"); // Delete FieldsManager.delField("533e9f59e4b05d2efeb6f1b5");