curl --request GET \
--url http://localhost:3001/v1/ledger-account/{id} \
--header 'Authorization: Bearer <token>'{
"accountNumber": "<string>",
"name": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Retrieve the details of a specific ledger account.
curl --request GET \
--url http://localhost:3001/v1/ledger-account/{id} \
--header 'Authorization: Bearer <token>'{
"accountNumber": "<string>",
"name": "<string>",
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Ledger Account ID
Was this page helpful?