Skip to main content
GET
/
v1
/
card-balance-accounts
/
{accountId}
Get card balance account
curl --request GET \
  --url https://api.light.inc/v1/card-balance-accounts/{accountId} \
  --header 'Authorization: <api-key>'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "companyEntityId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "companyId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "currency": "USD",
  "label": "<string>",
  "status": "ACTIVE",
  "balance": {
    "available": 123,
    "settled": 123,
    "reserved": 123,
    "currency": "USD"
  },
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "primary": true
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <api_key>, where <api_key> is your api key.

Path Parameters

accountId
string<uuid>
required

Response

default - application/json;charset=UTF-8

default response

id
string<uuid>
companyEntityId
string<uuid>
companyId
string<uuid>
currency
string
Example:

"USD"

label
string
status
enum<string>

⚠️ This enum is not exhaustive; new values may be added in the future.

Available options:
ACTIVE,
CLOSED
balance
object
createdAt
string<date-time>
updatedAt
string<date-time>
primary
boolean