Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sertexity.com/llms.txt

Use this file to discover all available pages before exploring further.

Event Types

All event types you can subscribe to when registering a webhook.

Account events

TypeDescription
account.updatedProfile was modified
account.password_changedPassword was changed
account.deletedAccount was deleted

Wallet events

TypeDescription
wallet.createdA new wallet was created
wallet.updatedWallet name or status changed
wallet.balance_changedBalance changed after a completed operation

Operation events

TypeDescription
operation.createdA new operation was recorded
operation.completedOperation moved to completed
operation.failedOperation moved to failed
operation.updatedMutable fields were changed
operation.deletedA pending operation was deleted

Example payload — operation.completed

{
  "id": "evt_01hz9g4k1m3p7r8s",
  "type": "operation.completed",
  "created_at": "2024-09-15T10:30:05Z",
  "data": {
    "object": {
      "id": "op_01hz8f3k9m2p6q7r",
      "wallet_id": "wal_01hy2c4n8j5r3d6e",
      "type": "expense",
      "status": "completed",
      "amount": 150000,
      "asset": "BTC",
      "description": "Hardware wallet purchase",
      "created_at": "2024-09-15T10:30:00Z",
      "completed_at": "2024-09-15T10:30:05Z"
    }
  }
}