Skip to content

Delete Customization

DELETE
View MD

Delete an existing customization by its unique identifier.

ParameterTypeRequiredDescription
TRACKER_IDstringYour unique tracker identifier.
CUSTOMIZATION_IDUUIDThe unique ID of the customization to delete.
HeaderValueDescription
Content-Typeapplication/json; charset=utf-8Required.
DateHTTP dateRequired for HMAC.
AuthorizationApiAuth {TRACKER_ID}:{SIGNATURE}Required for HMAC.
  1. Build the string to sign from the method, content type, date, and full resource path including the customization ID.
  2. Generate the HMAC SHA-256 digest with your private key.
  3. Send the Date, Content-Type, and Authorization headers with the DELETE request.

This endpoint returns 204 No Content on successful deletion.

HTTP StatusDescription
204 No ContentCustomization deleted successfully.
401 UnauthorizedMissing or invalid authentication.
404 Not FoundCustomization not found.