Remove Filter Set(s)

Remove one or more filter sets.

Endpoint

DELETE https://api.crowdynews.com/collection/sets

Request Parameters

HEADER FIELD VALUE DESCRIPTION
Content-Type The content type of the request body, must be set to application/json.
QUERY PARAMETER VALUE DESCRIPTION
access_token A valid OAuth access token with the correct permission(s).
REQUEST BODY DATA VALUE TYPE VALUE DESCRIPTION
ids Array Contains the set resource IDs that must be removed. A set can only be removed when the consumer has access to the contract said set(s) belong(s) to, otherwise this action is forbidden.

Response Format

On success, the HTTP status code in the response header is 204 No Content. On error, the header status code is an error code and the response body contains an error object.

Example Request

Request:

DELETE https://api.crowdynews.com/collection/sets?access_token={your access token}

{
    "ids": [ "565d4de4056f859526d53389" ]
}

Response:

HTTP/1.1 204

Additional Resources