curl --request POST \
--url https://api.example.com/inventory/transfers \
--header 'Content-Type: application/json' \
--data '
{
"productId": "<string>",
"fromWarehouseId": "<string>",
"toWarehouseId": "<string>",
"quantity": 123,
"notes": "<string>"
}
'