Order
workspace | Type: string (format: iri-reference) The workspace reference to which the order belongs. Example: |
orderNumber | Type: string|null A number associated with a purchase order. Example: |
externalSourceIntegration | Type: string|null (format: iri-reference) The workflow reference to integration for ecommerce store. Example: |
externalSourceSyncId | Type: string|null The id of the order in ecommerce store (WooCommerce, Shopify, etc.). Example: |
externalSourceUrl | Type: string|null (format: URL) The url of the order in ecommerce store. Example: |
subtotal | Type: string|null The current subtotal price of the order in the store currency. Default value is 0 Example: |
total | Type: string|null The current total price of the order in the store currency. Default value is 0 Example: |
currency | Type: string|null A three-letter currency code. Default value is USD Example: |
orderStatus | Type: object|null The current status of order. Represented by the Status object. Example:"orderStatus": { "code": "new", "title": "New", "id": "c2dc66dc-9b21-4144-8b1f-4e1e1bb866d6" }
|
orderType | Type: string customer|vendor Example: |
email | Type: string|null (format: email) Customer email address. Example: |
phoneNumber | Type: string|null Customer phone number. Example: |
createdAt | Type: string (format: date-time) The date and time (in ISO-8601 format) when the order was created. Example: |
updatedAt | Type: string (format: date-time) The date and time (in ISO-8601 format) when the order was updated. Example: |
shipments | Type: array List of shipment references that belong to the order. Example: |
shippingAddress | Type: object|null The mailing address to where the order will be shipped. Represented by the Address object. Example:"shippingAddress": { "addressLine1": "567 East Cedar", "addressLine2": "Apartment 1", "city": "Liberal", "company": "Acme, Inc.", "country": "United States", "countryIso2": "US", "firstName": "Dorothy", "lastName": "Gale", "postcode": 67901, "state": "Kansas" }
|
billingAddress | Type: object|null The mailing address associated with the payment method. Represented by the Address object. Example:"billingAddress": { "addressLine1": "567 East Cedar", "addressLine2": "Apartment 1", "city": "Liberal", "company": "Acme, Inc.", "country": "United States", "countryIso2": "US", "firstName": "Dorothy", "lastName": "Gale", "postcode": 67901, "state": "Kansas" }
|
fulfillmentStatus | Type: string|null The fulfillment status code. The calculation is based on qty and fulfilledQty properties of children order items.
Example: |
shipmentsWithoutTrackingCount | Type: integer|null |
id | Type: string (format: uuid) A version 4 UUID. A unique order identifier is used in API requests. Example: |
readonly | Type: boolean |