curl --silent --show-error --fail-with-body --request POST \
--url 'https://api.stateset.com/api/v1/orders' \
--header "Authorization: Bearer $STATESET_API_KEY" \
--header "Idempotency-Key: ${IDEMPOTENCY_KEY:?Set a unique key for this operation; preserve it on retries}" \
--header 'Content-Type: application/json' \
--data '{
"billing_address": {
"city": "San Francisco",
"country": "US",
"line1": "548 Market St",
"line2": "Suite 400",
"postal_code": "94107",
"state": "CA"
},
"currency": "USD",
"customer_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"discount": "5.00",
"name": "Two-Person Tent",
"product_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"quantity": 2,
"sku": "SKU-TENT-2P-GRN",
"tax_amount": "4.12",
"unit_price": "49.00",
"variant_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"notes": "Two-person tent, green — replacement for damaged pole set.",
"payment_method": "card",
"shipping_address": {
"city": "San Francisco",
"country": "US",
"line1": "548 Market St",
"line2": "Suite 400",
"postal_code": "94107",
"state": "CA"
},
"shipping_method": "ground",
"stock_policy": "allow_backorder"
}'
{
"created_at": "2026-08-31T14:22:05Z",
"currency": "USD",
"customer_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"fulfillment_status": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"product_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"quantity": 2,
"shipped_quantity": 1,
"sku": "SKU-TENT-2P-GRN",
"total": "102.12",
"unit_price": "49.00"
}
],
"order_number": "ORD-10042",
"payment_status": "string",
"status": "pending",
"total_amount": "102.12",
"updated_at": "2026-08-31T14:22:05Z"
}
Create an order
Create an order
POST
/
api
/
v1
/
orders
curl --silent --show-error --fail-with-body --request POST \
--url 'https://api.stateset.com/api/v1/orders' \
--header "Authorization: Bearer $STATESET_API_KEY" \
--header "Idempotency-Key: ${IDEMPOTENCY_KEY:?Set a unique key for this operation; preserve it on retries}" \
--header 'Content-Type: application/json' \
--data '{
"billing_address": {
"city": "San Francisco",
"country": "US",
"line1": "548 Market St",
"line2": "Suite 400",
"postal_code": "94107",
"state": "CA"
},
"currency": "USD",
"customer_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"discount": "5.00",
"name": "Two-Person Tent",
"product_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"quantity": 2,
"sku": "SKU-TENT-2P-GRN",
"tax_amount": "4.12",
"unit_price": "49.00",
"variant_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"notes": "Two-person tent, green — replacement for damaged pole set.",
"payment_method": "card",
"shipping_address": {
"city": "San Francisco",
"country": "US",
"line1": "548 Market St",
"line2": "Suite 400",
"postal_code": "94107",
"state": "CA"
},
"shipping_method": "ground",
"stock_policy": "allow_backorder"
}'
{
"created_at": "2026-08-31T14:22:05Z",
"currency": "USD",
"customer_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"fulfillment_status": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"product_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"quantity": 2,
"shipped_quantity": 1,
"sku": "SKU-TENT-2P-GRN",
"total": "102.12",
"unit_price": "49.00"
}
],
"order_number": "ORD-10042",
"payment_status": "string",
"status": "pending",
"total_amount": "102.12",
"updated_at": "2026-08-31T14:22:05Z"
}
Confirm your deployment before running this request. This page describes an API contract;
a published reference does not establish hosted availability. Check the dated
host report and obtain your deployment URL and credentials.
Replace the example host if your provisioned service uses a different URL.
Headers
string,null
Optional client-generated key. Replaying the same key with an identical body returns the original response without creating a duplicate; reusing it with a different body returns 422. Scoped per tenant.
Request body
CreateOrderRequest
AddressDto,null
string,null
ISO currency code (default: USD).
string (uuid)
required
The customer placing the order.
CreateOrderItemRequest[]
required
string,null
Optional notes.
string,null
Payment method identifier.
AddressDto,null
string,null
Shipping method identifier.
StockPolicyDto,null
Stock policy accepted by
POST /api/v1/orders (stock_policy). Allowed values: 'allow_backorder', 'reject_if_insufficient'.Response
OrderResponse
string (date-time)
required
string
required
string (uuid)
required
string
required
string (uuid)
required
OrderItemResponse[]
required
string
required
string
required
string
required
string
required
string (date-time)
required
Status codes
| Code | Meaning |
|---|---|
201 | Order created |
400 | Invalid request |
422 | Idempotency-Key reused with a different body |
428 | Idempotency-Key header required on this endpoint (configurable) |
Using this contract
Read the source OpenAPI document for declared schemas and alternatives. This page also includes documented corrections from the spec overlays. Example IDs and values are illustrative; replace them with records from your workspace.curl --silent --show-error --fail-with-body --request POST \
--url 'https://api.stateset.com/api/v1/orders' \
--header "Authorization: Bearer $STATESET_API_KEY" \
--header "Idempotency-Key: ${IDEMPOTENCY_KEY:?Set a unique key for this operation; preserve it on retries}" \
--header 'Content-Type: application/json' \
--data '{
"billing_address": {
"city": "San Francisco",
"country": "US",
"line1": "548 Market St",
"line2": "Suite 400",
"postal_code": "94107",
"state": "CA"
},
"currency": "USD",
"customer_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"discount": "5.00",
"name": "Two-Person Tent",
"product_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"quantity": 2,
"sku": "SKU-TENT-2P-GRN",
"tax_amount": "4.12",
"unit_price": "49.00",
"variant_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}
],
"notes": "Two-person tent, green — replacement for damaged pole set.",
"payment_method": "card",
"shipping_address": {
"city": "San Francisco",
"country": "US",
"line1": "548 Market St",
"line2": "Suite 400",
"postal_code": "94107",
"state": "CA"
},
"shipping_method": "ground",
"stock_policy": "allow_backorder"
}'
{
"created_at": "2026-08-31T14:22:05Z",
"currency": "USD",
"customer_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"fulfillment_status": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"items": [
{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"name": "Two-Person Tent",
"product_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"quantity": 2,
"shipped_quantity": 1,
"sku": "SKU-TENT-2P-GRN",
"total": "102.12",
"unit_price": "49.00"
}
],
"order_number": "ORD-10042",
"payment_status": "string",
"status": "pending",
"total_amount": "102.12",
"updated_at": "2026-08-31T14:22:05Z"
}
Last modified on September 21, 2026