> ## Documentation Index
> Fetch the complete documentation index at: https://getequity.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# order.cancelled

> Triggered when an order is cancelled.

Triggered when an order is cancelled. Only emitted when the order's `owner_model` is `organisation`, and delivered to that organisation's webhook URL.

```json theme={null}
{
  "webhook_event": "order.cancelled",
  "order": {
    "_id": "<orderId>",
    "type": "Buy | Sell",
    "amount": "<number>",
    "price": "<number>",
    "user": "<userId>",
    "token": "<tokenId>",
    "currency": "<string>",
    "owner_model": "organisation",
    "version": "2",
    "status": "TERMINATED",
    "customer": "<apiCustomerId?>",
    "api_customer_email": "<string?>",
    "meta": { "...": "..." },
    "createdAt": "<ISO>",
    "updatedAt": "<ISO>"
  }
}
```
