TransactionLink

NEW_TRANSACTIONS_AVAILABLE

Triggered when new transactions for a user's merchant account are available. See a sample payload below:

{
  "event": "NEW_TRANSACTIONS_AVAILABLE",
  "external_user_id": "{your-unique-identifier}",
  "merchant": {
    "id": 45,
    "name": "Walmart"
  },
  "timestamp": 1710864923198
}

UPDATED_TRANSACTIONS_AVAILABLE

Triggered when updated data is available for existing transactions for a user's merchant account. The webhook includes an array of transaction IDs for which there exists updated data. See a sample payload below:

{
  "event": "UPDATED_TRANSACTIONS_AVAILABLE",
  "external_user_id": "{your-unique-identifier}",
  "merchant": {
    "id": 45,
    "name": "Walmart"
  },
  "updated": [
    {
       "id": "123abc456def"
    },
    {
       "id": "789ghi012jkl"
    }
  ],
  "timestamp": 1710864923198
}