Remove Filter Chain(s)

Remove one or more filter chains.

Endpoint

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

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 chain resource ID that must be removed. A chain can only be removed when the consumer has access to the contract said chain(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/chains?access_token={your access token}

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

Response:

HTTP/1.1 204

Additional Resources