Printago API
POST
/v1/orders/{orderId}/items
Add items to an order
Path Parameters
orderId
required
string
The order's unique identifier
Request Body
Array of items to add to the order
RequestBody
value
object[]
Example Request
application/json
[
{
"quantity": 1
}
]
Response Schema
Response
value
object[]
Example Response
201 OK — application/json
[
{
"orderId": "string",
"quantity": 1,
"id": "string",
"storeId": "string",
"createdAt": "2026-08-24T03:58:55.739Z",
"updatedAt": "2026-08-24T03:58:55.739Z"
}
]