Get Entity by Id
This API gets entity by id
Request
GET - /api/v1/entities/:id
Example Request Body:
Response
Success response code - 200 (ok)
Key | Value | Description |
---|---|---|
data | entity object | Object having entity data |
data.id | string | Unique identifier for the Entity |
data.name | string | Name of the entity |
data.status | string | Entity status |
data.geography | string | Entity geography |
Example Response Body:
{
"data": {
"id": "roma_88caBHKBUYBE7Y_05_09",
"name": "First entity",
"status": "active",
"geography": "USA"
}
}