Docs

Update Line Item Group

PUT /orders/{orderId}/groups/{lineItemGroupId}

PUT/orders/{orderId}/groups/{lineItemGroupId}

Required Tokens

FieldTypeRequiredDescription
BearerAuthorization: Bearer <api-key>OptionalYour API key. Pass it as the Bearer token on every request.

Updates all fields on an existing line item group.

Path Parameters

FieldTypeRequiredDescription
orderIdGuidRequiredThe ID of the order. Replace `{{orderId}}` in the URL.
lineItemGroupIdGuidRequiredThe ID of the line item group to update. Replace `{{lineItemGroupId}}` in the URL.

Request Body

Same shape as Add Line Item Group.

FieldTypeRequiredDescription
namestringRequiredGroup display name.
notesstringOptionalGroup-level notes.
isDeliveryboolRequiredWhether this group has its own delivery details.
startDateTimeDateTimeRequiredGroup start date/time (ISO 8601).
endDateTimeDateTimeRequiredGroup end date/time (ISO 8601).
deliveryInformationDeliveryOptionalGroup-level delivery address. Same shape as order-level delivery. Pass `null` if not applicable.

Response

Returns 200 OK with an empty body on success.