Docs
Update Line Item Group
PUT /orders/{orderId}/groups/{lineItemGroupId}
PUT
/orders/{orderId}/groups/{lineItemGroupId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Updates all fields on an existing line item group.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| orderId | Guid | Required | The ID of the order. Replace `{{orderId}}` in the URL. |
| lineItemGroupId | Guid | Required | The ID of the line item group to update. Replace `{{lineItemGroupId}}` in the URL. |
Request Body
Same shape as Add Line Item Group.
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | Group display name. |
| notes | string | Optional | Group-level notes. |
| isDelivery | bool | Required | Whether this group has its own delivery details. |
| startDateTime | DateTime | Required | Group start date/time (ISO 8601). |
| endDateTime | DateTime | Required | Group end date/time (ISO 8601). |
| deliveryInformation | Delivery | Optional | Group-level delivery address. Same shape as order-level delivery. Pass `null` if not applicable. |
Response
Returns 200 OK with an empty body on success.