{type} is the category type (1 for product categories). The request body is a JSON object that maps display-order positions to category IDs — e.g. { "0": 12, "1": 34 } puts category 12 first and category 34 second. Every key and value must be numeric.curl --location --globoff 'https://.daftra.com/api2/categories/update_display_order/1.json' \
--header 'Accept: application/json' \
--header 'apikey: ' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{"0": 12, "1": 34, "2": 56}'{
"result": "successful",
"code": 200,
"message": "Display order updated"
}