Kobble
  1. Endusers
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
      GET
    • Create a new enduser
      POST
    • Get enduser by ID
      GET
  • 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
  1. Endusers

Get all endusers

GET
/customers/v1/endusers
Fetch a list of all endusers, along with their associated person or company entity and metadata information.

Request

Header Params

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 GET '/customers/v1/endusers' \
--header 'Authorization: Bearer {{access_token}}'

Responses

🟢200OK
application/json
Body

Example
[
    {
        "id": "07777ee5-491f-46cd-bc66-0bb5c02fcb7e",
        "company": {
            "id": "07777ee5-491f-46cd-bc66-0bb5c02fcb7e",
            "name": "sam"
        },
        "company_id": "b55d4ef2-7cc2-49c1-a718-f71d3ae9fef5",
        "metadata": {}
    }
]
Modified at 2025-01-22 15:44:02
Previous
Endusers API
Next
Create a new enduser
Built with