Submit multiple items in one call when needed.

Section: JSON request patterns

Bulk create request

json
json
{
  "items": [
    { "sku": "sku_1", "qty": 2 },
    { "sku": "sku_2", "qty": 1 }
  ]
}
Explanation

Bulk endpoints can reduce chattiness, but they need clear per-item success and failure semantics.

Learn the surrounding workflow

Compare similar commands or jump into common fixes when this command is part of a bigger troubleshooting path.

Related commands

Same sheet · prioritizing JSON request patterns
Simple create request body
POST a resource representation.
OpenIn sheetjsonsame section
Partial update body
PATCH with only the fields that change.
OpenIn sheetjsonsame section
Sparse fieldsets
Return only requested fields.
OpenIn sheethttp1 tag match
Embed related resources on demand
Include relationships when the client asks for them.
OpenIn sheethttp1 tag match
Return an ETag for concurrency and caching
Tag a representation with a revision validator.
OpenIn sheethttp1 tag match
Protect updates with If-Match
Prevent lost updates from concurrent writes.
OpenIn sheethttp1 tag match