{type} is the item type (1 for products). The request body is a JSON object mapping each category ID to an ordered array of item IDs — e.g. { "12": [101, 102] }. For every category in the body the existing item assignments are replaced by the supplied list (the array order becomes the display order). All keys and values must be numeric.curl --location --globoff 'https://.daftra.com/api2/categories/update_category_items/1.json' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{"12": [101, 102, 103], "34": [201, 202]}'{
"result": "successful",
"code": 200,
"message": "Display order updated"
}