curl --location --request POST 'https://your-api-server.com?dataDomain=stockItems' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 123,
"categoryId": null,
"name": "My item",
"measure": "pcs",
"vatRate": 0.21,
"_lastModifiedAt": "2024-01-01T12:00:00.000Z"
}'
{}