The Order entity at YouCan.
| Attribute Name | Type | Description |
|---|---|---|
| id | string | Identifier (UUID) |
| ref | string | Human-readable order reference number |
| total | float | Order total (in store currency) |
| vat | float | VAT amount |
| currency | string | Store currency code |
| customer_currency | string | Currency the customer used at checkout |
| customer_currency_rate | float | Exchange rate between customer currency and store currency |
| notes | string, null | Internal seller notes |
| status | int | Confirmation status integer value |
| status_new | string | Confirmation status as a translated label |
| status_object | object | Full status object with slug, name, color |
| payment_status | int | Payment status integer value |
| payment_status_new | string | Payment status as a translated label |
| confirmation_status | int | Confirmation status integer value |
| shipping_status | int | Shipping status integer value |
| tags | array | Tags assigned to the order |
| extra_fields | array | Extra checkout fields collected at order time |
| custom_fields | array | Custom fields defined by the merchant |
| is_refunded_by_platform | bool | Whether the order was refunded through the platform |
| platform_fee | float | Platform fee deducted from the order |
| created_at | string | Order creation date (ISO 8601) |
| updated_at | string | Last update date (ISO 8601) |
| links.show | string | URL to view the order in the seller area |