Get an Entity by ID
This method returns the entity that matches the entered ID.
Authorizations
X-Ledger-API-KeystringRequired
If you've set up your API Key when initializing your LAM, you'll need to include it as a header along with the api user header. For more details, see step 5 of the get started documentation.
X-Ledger-API-UserstringRequired
(required) Username of a registered API User
Path parameters
entity_idintegerRequired
The entity's ID
Responses
200
entity object
application/json
404
entity not found
application/json
get
/entities/{entity_id}GET /entities/{entity_id} HTTP/1.1
Host:
X-Ledger-API-Key: YOUR_API_KEY
X-Ledger-API-User: YOUR_API_KEY
Accept: */*
{
"accounts": [
1
],
"created_by": 5,
"created_on": "2025-11-14T17:56:53.410Z",
"id": 1,
"last_request": 3,
"name": "text",
"status": "text"
}Last updated