curl --location --request POST 'https://your-api-server.com?dataDomain=stockMovements' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 7031,
"createdAt": "2022-03-05T15:21:19.000Z",
"createdByPersonId": "5dea602a9e01eb0015219158",
"totalPriceWithVat": 1200,
"totalPriceWithoutVat": 1000,
"stockId": 1,
"supplier": "Makro",
"number": "20240115",
"type": "stockUp",
"isDeleted": false,
"items": [
{
"stockItemId": 4,
"amount": 1,
"previousAmount": null,
"measure": "pcs",
"vatRate": 0.21,
"unitPriceWithVat": 115,
"unitPriceWithoutVat": 95.04132,
"totalPriceWithVat": 115,
"totalPriceWithoutVat": 95.04132
},
{
"stockItemId": 6,
"amount": 2,
"previousAmount": null,
"measure": "pcs",
"vatRate": 0.21,
"unitPriceWithVat": 150,
"unitPriceWithoutVat": 123.96694,
"totalPriceWithVat": 300,
"totalPriceWithoutVat": 247.93388
}
],
"_lastModifiedAt": "2022-04-05T12:21:24.000Z"
}'