Skip to main content
GET
/
account_holders
/
{id}
Get account holder
curl --request GET \
  --url https://api.ledgerbeam.com/v1/account_holders/{id} \
  --header 'API-KEY: <api-key>'
{
  "id": "35b927b6-6fda-40aa-93b8-95b47c2b2cad",
  "type": "consumer",
  "created_at": "2024-03-30T00:00:00Z",
  "name": "John Doe",
  "category_id": "category_id"
}

Overview

Retrieve detailed information about a specific account holder by their ID.
  • Account Details: Get complete information about a specific account holder
  • Customer Service: Retrieve account holder information for support
  • Integration: Fetch account holder data for external systems
  • Audit Trail: Access account holder creation and modification history

Authorizations

API-KEY
string
header
required

API key for authentication

Path Parameters

id
string
required

Account holder ID

Response

Account holder retrieved successfully

id
string

The unique ID of the account holder

Minimum length: 1
Example:

"35b927b6-6fda-40aa-93b8-95b47c2b2cad"

type
enum<string>

The type of the account holder

Available options:
consumer,
business
Example:

"consumer"

created_at
string<date-time>

The timestamp of when the account holder was created

Example:

"2024-03-30T00:00:00Z"

name
string | null

The name of the account holder

Example:

"John Doe"

category_id
string | null

The category set ID to use for this account holder's transactions

Example:

"category_id"