Skip to main content
An object representing a cancellation request for an order. This type is returned as part of the OrderingOrder type.
type OrderingOrderCancellationRequest {
  status: OrderingOrderCancellationRequestStatus!
  reason: String!
  createdAt: String!
  updatedAt: String!
}

status

OrderingOrderCancellationRequestStatus - The status of the cancellation request.

reason

string - The reason for the cancellation request.

createdAt

string - The timestamp when the cancellation request was created in ISO 8601 format.

updatedAt

string - The timestamp when the cancellation request was last updated in ISO 8601 format.
When cancellation requests are created or updated, webhook events are triggered. See Order Cancellation Requests for more information about these events.