Remove Customization(s)¶
Remove one or more customizations.
Endpoint¶
DELETE https://api.crowdynews.com/publication/customizations
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 customization resource IDs that must be removed. A customization can only be removed when the consumer has access to the contract said customization(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/publication/customizations?access_token={your access token}
{
"ids": [ "565d4de4046e659546e42253" ]
}
Response:
HTTP/1.1 204