Kobble
  1. Transactions
Kobble
  • Introduction
  • API Fundamentals
    • Idempotency
    • Rate Limits
  • Authorization
    • Authorization
    • Get access token
      POST
  • Beneficiaries
    • List all beneficiaries
      GET
    • Get beneficiary by ID
      GET
    • Create beneficiary
      POST
    • Update beneficiary
      PUT
  • Cards
    • Cards API
    • Get all cards
      GET
    • Create a new card
      POST
    • Get card by ID
      GET
    • Update card status
      PATCH
    • Replace or renew card
      POST
    • Generate card secret
      POST
  • Card Programs
    • Card Programs API
    • Get all programs
      GET
    • Create a new program
      POST
    • Get program by ID
      GET
  • 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
      GET
    • Create a transaction
      POST
    • Get transaction by ID
      GET
    • Create manual credit transaction
      POST
    • Create manual debit transaction
      POST
  • 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
  1. Transactions

Create manual debit transaction

POST
/customers/v1/transactions/manual-debit
Manually create a debit transaction with the specified details.

Request

Header Params

Body Params application/json

Example
{
    "amount": 1,
    "reference": "",
    "metadata": {},
    "from": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/customers/v1/transactions/manual-debit' \
--header 'Idempotency-Key: {{idempotency-key}}' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "amount": 1,
    "reference": "",
    "metadata": {},
    "from": "3fa85f64-5717-4562-b3fc-2c963f66afa6"
}'

Responses

🟢201Created
application/json
Body

Example
{
    "id": "7cf8a88a-50d5-4410-b5bf-18ad6f2eefe3",
    "amount": 1,
    "asset": "AUD",
    "asset_class": "CURRENCY",
    "created_at": "2025-01-14T16:45:26.030Z",
    "external_id": "111",
    "from": "57bba250-8e7d-442a-9640-8a67e689e597",
    "payment_type": "MANUAL_DEBIT",
    "reference": "elit eiusmod deserunt cillum sed",
    "status": "ACCEPTED",
    "type": "MANUAL_DEBIT",
    "updated_at": "2025-01-14T16:45:26.032Z",
    "metadata": {},
    "info": {}
}
Modified at 2025-01-22 15:45:55
Previous
Create manual credit transaction
Next
Wallets API
Built with