201 response means the order400 with a machine-readable error code — safe to retrycurl --location 'https://mock.apidog.com/m1/1332245-0-default/orders' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"userId": "usr_1a2b3c4d",
"items": [
{
"productId": "prd_laptop001",
"quantity": 1,
"unitPrice": 999.99
},
{
"productId": "prd_mouse001",
"quantity": 2,
"unitPrice": 25
}
],
"shippingAddress": {
"street": "123 Main St",
"city": "San Francisco",
"state": "CA",
"postalCode": "94102",
"country": "US"
}
}'{
"orderId": "ord_new123abc",
"userId": "usr_1a2b3c4d",
"status": "pending",
"totalAmount": 1049.99,
"currency": "USD",
"items": [
{
"orderItemId": "itm_001",
"productId": "prd_laptop001",
"quantity": 1,
"unitPrice": 999.99,
"subtotal": 999.99
},
{
"orderItemId": "itm_002",
"productId": "prd_mouse001",
"quantity": 2,
"unitPrice": 25,
"subtotal": 50
}
],
"shippingAddress": {
"street": "123 Main St",
"city": "San Francisco",
"state": "CA",
"postalCode": "94102",
"country": "US"
},
"createdAt": "2024-01-20T11:00:00Z"
}