collection.deleteCollection

Deletes the specified collection. Please note that you only have access to your own collections.

Note: Requests must be made to https://api.flipsnack.com/v1.

Request parameters

Response parameters

If the request is successful, The API does not send back data. It only responds with status code "20 - OK".

Error codes

For complete list of error codes and messages go to API status codes section.

Examples

Request

# GET
curl -X GET \
     -G \
     https://api.flipsnack.com/v1/ \
     -d action=collection.deleteCollection \
     -d apiKey=<YOUR-API-KEY> \
     -d collectionHash=d3m0h45h \
     -d signature=<YOUR-REQUEST-SIGNATURE>

Response

{
    "code": 20,
    "status": "OK"
}

Last updated