Kobble
  1. Schemas
Kobble
  • Introduction
  • API Fundamentals
    • Idempotency
    • Rate Limits
  • Authorization
    • Authorization
    • Get access token
  • Beneficiaries
    • List all beneficiaries
    • Get beneficiary by ID
    • Create beneficiary
    • Update beneficiary
  • Cards
    • Cards API
    • Get all cards
    • Create a new card
    • Get card by ID
    • Update card status
    • Replace or renew card
    • Generate card secret
  • Card Programs
    • Card Programs API
    • Get all programs
    • Create a new program
    • Get program by ID
  • Clients
    • Clients API
    • Get all clients
    • Get client by ID
    • Create a new client
    • Update client status
  • Endusers
    • Endusers API
    • Get all endusers
    • Create a new enduser
    • Get enduser by ID
  • Transactions
    • Transactions API
    • Get all transactions
    • Create a transaction
    • Get transaction by ID
    • Create manual credit transaction
    • Create manual debit transaction
  • Wallets
    • Wallets API
    • Get all wallets
    • Create a new wallet
    • Get wallet by ID
    • Update wallet
  • Relays
    • Relays API
    • Create subscription
  • Webhooks
    • Webhooks API
    • Webhook Signature Verification
    • Get all webhooks
    • Create a webhook
    • Delete a webhook
  • Schemas
    • Schemas
      • Webhook
      • Relay
      • Client
      • Beneficiary
      • Card
      • CardCreateInputDto
      • CardStatusUpdateDto
      • CardRenewReplaceInputDto
      • Program
      • MetadataKobbleDebit1
      • ProgramCreateInputDto
      • Person
      • Company
      • Enduser
      • Enduser Create Person Input
      • Enduser Create Company Input
      • Metadata
      • Enduser Create Input DTO
      • Transaction
      • TransactionCreateManualCreditInputDto
      • TransactionCreateInputDto
      • Wallet
      • WalletCreateInputDto
      • WalletUpdateInputDto
  1. Schemas

Transaction

A record representing a financial transaction.

{
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "amount": 0,
    "asset": "AUD",
    "asset_class": "CURRENCY",
    "created_at": "2019-08-24T14:15:22Z",
    "external_id": "string",
    "from": "dee192b0-275e-44a2-9c77-32b75da2f26f",
    "payment_type": "CARD",
    "reference": "string",
    "status": "ACCEPTED",
    "to": "4a3e8739-e3a9-4b51-9b6f-406b6818a828",
    "type": "INTER_WALLET",
    "updated_at": "2019-08-24T14:15:22Z",
    "metadata": {},
    "info": {}
}
Built with