Ship products from one building to the other
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"building_from_id": 0,
"building_to_id": 0,
"product_id": 0,
"amount": 0
}
Request Code Samples
curl --location --request POST '/transportation/shipment' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"building_from_id": 0,
"building_to_id": 0,
"product_id": 0,
"amount": 0
}'
Responses
application/json Modified at 2025-01-30 21:34:25