Skip to main content
Triggered when a buy/sell match is fulfilled on the exchange. The event is fired twice — once to the seller’s organisation and once to the buyer’s organisation (when the respective organisation can be resolved).
{
  "webhook_event": "transaction.created",
  "transaction": {
    "_id": "<transactionId>",
    "user": "<userId>",
    "token": "<tokenId>",
    "currency": "<string>",
    "reference": "GETXN_TKN_BUY_xxx | GETXN_TKN_SELL_xxx",
    "type": "BUY | SELL",
    "from": "<sellerUserId>",
    "to": "<buyerUserId>",
    "volume": "<number>",
    "price": "<number>",
    "status": "COMPLETED",
    "owner_model": "user | organisation | api_key",
    "meta": {
      "customer": "<email?>",
      "meta": { "...": "..." }
    },
    "api_customer_email": "<string?>",
    "createdAt": "<ISO>"
  }
}