Using the streaming Items API
Required fields are marked with a red asterisk (*) in the Name column.
Use the streaming Items API for real time item updates throughout the day.
Upsert items
POST
https://items.attraqt.io/items
This endpoint allows you to create or modify a list of items.
Query Parameters
fhrValidation
string
True/false. Enforces specific validation to comply with the Fredhopper data model
Headers
Authorization*
string
Bearer token
Request Body
items*
array
List of items
If a category tree has been defined for a catalogue version, the categories attribute becomes mandatory.
Please keep the message size of each API call under 1MB for better performance.
Patch items
PATCH
https://items.attraqt.io/items
This method allows you to patch attributes of given items.
Unlike the upsert, patch an item will only update attributes that are present in the request. It means that you don't need to send the whole item, but only the updated attributes.
Query Parameters
fhrValidation
String
True/false. Enforces specific validation to comply with the Fredhopper data model
Headers
Authorization*
string
Bearer token
Request Body
items*
array
List of items with attributes to patch
Mandatory attributes aren't checked with this method. Only the attribute's types are validated.
Delete items
POST
https://items.attraqt.io/items/delete
This endpoint allows you to delete items.
Query Parameters
Headers
Authorization*
string
Bearer token
Request Body
item IDs*
array
List of item IDs
Last updated