Kobble
  1. Beneficiaries
Kobble
  • Introduction
  • API Fundamentals
    • Idempotency
    • Rate Limits
    • Healthcheck
      GET
  • Authorization
    • Authorization
    • Get access token
      POST
  • Beneficiaries
    • List all beneficiaries
      GET
    • Get beneficiary by ID
      GET
    • Create beneficiary
      POST
    • Update beneficiary
      PUT
    • Create Payid beneficiary
      POST
  • Cards
    • Cards API
    • Card Creation Flow — Developer Guide & Onboarding
    • 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
    • Get client by ID
      GET
    • Create a new client
      POST
    • Update client status
      PATCH
  • Endusers
    • Endusers API
    • Usage of Metadata on Endusers
    • 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. Beneficiaries

Create beneficiary

POST
/customers/v1/beneficiaries
The standard beneficiary creation endpoint. You must provide either person OR company details, but not both.

Request

Body Params application/json

Examples
{
    "account_number": "123456789",
    "bank_code": "062000",
    "bank_code_type": "BSB",
    "bank_country": "AUS",
    "bank_name": "Commonwealth Bank",
    "company": {
        "name": "Acme Corporation Pty Ltd"
    },
    "metadata": {}
}

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
curl --location --request POST '/customers/v1/beneficiaries' \
--header 'Content-Type: application/json' \
--data-raw '{
    "account_number": "123456789",
    "bank_code": "062000",
    "bank_code_type": "BSB",
    "bank_country": "AUS",
    "bank_name": "Commonwealth Bank",
    "company": {
        "name": "Acme Corporation Pty Ltd"
    },
    "metadata": {}
}'

Responses

🟢201Created
application/json
Body

Example
{
    "id": "e232ba4c-9322-4fac-8aa5-ceaf9a1c1c44",
    "account_number": "123456789",
    "bank_code": "062000",
    "bank_code_type": "BSB",
    "bank_country": "AUS",
    "bank_name": "Commonwealth Bank",
    "pay_id": null,
    "pay_id_type": null,
    "pay_id_name": null,
    "pay_id_status": null,
    "pay_id_registered_at": null,
    "created_at": "2026-01-21T06:08:25.452Z",
    "updated_at": "2026-01-21T06:08:25.452Z",
    "status": "ACTIVE",
    "person": null,
    "company": {
        "name": "Acme Corporation Pty Ltd"
    },
    "metadata": {}
}
Modified at 2026-01-21 06:32:01
Previous
Get beneficiary by ID
Next
Update beneficiary
Built with