A
A
API
Search
K

Delete

Delete one collection

Parameters:

Name
Optional / Required
Data type
Description
Default
id
required
String
One of your collection ids
curl
PHP
JavaScript
Java
Example:
curl -X DELETE -H "X-ACCESS-TOKEN: YOUR_ACCESS_TOKEN" -d "id=omkYGduXowlyx9WF" "https://api.yumpu.com/2.0/collection.json"
Example:
require_once('../yumpu.php');
$yumpu = new Yumpu();
$id = 'omkYGduXowlyx9WF';
$deleteCollection = $yumpu->deleteCollection($id);
print_r($deleteCollection);
Example:
var yumpu = require('yumpu');
yumpu.setToken('yourToken');
var parameters = {
id: 'omkYGduXowlyx9WF'
};
yumpu.deleteCollection(parameters, function(statusCode, document){
console.log('Status: ' + statusCode);
console.log(document);
});
Example:
Yumpu y = new Yumpu("your access token");
String id = "omkYGduXowlyx9WF";
System.out.println(y.deleteCollection(id));
Whatever language you are using, the result will be the same.
{"state":"success"}
Last modified 1yr ago