curl --location --request POST 'https://api.storyous.com/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"requestId": "someRandomId",
"accountId": "someUniqueId",
"currency": "CZK",
"items": [
{
"name": "Hemingway special",
"count": 80.444,
"unitPriceWithVat": 99.77,
"vatRate": 0.21
}
]
}'
{}