Skip to content

Get Customization

GET
View MD

Retrieve one customization by its unique identifier.

ParameterTypeRequiredDescription
TRACKER_IDstringYour unique tracker identifier.
CUSTOMIZATION_IDUUIDThe unique ID of the customization to retrieve.
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 the full resource path including the customization ID.
  2. Generate the HMAC SHA-256 digest using your private key.
  3. Send the Date, Content-Type, and Authorization headers with the request.

The response contains the full customization object.

FieldTypeDescription
idUUIDUnique customization identifier.
modelstringRecommender model, for example basket.
target_typestringitem, criteria, or all.
target_identitystringTarget identity when target_type is item.
target_criteriaobjectCriteria definition when target_type is criteria.
tagsarrayOrganizational tags.
pin_definitionsarrayPin definitions for the customization.
creatorstringUser who created the customization.
created_atstringCreation timestamp.
availablebooleanWhether the customization is currently active.
HTTP StatusDescription
200 OKSuccess.
401 UnauthorizedMissing or invalid authentication.
404 Not FoundCustomization not found.