Retrieve a single Entity
URL
GET https://<tenant>.bubbleppm.com/api/v3/entities/<entity_id>
GET https://<tenant>.bubbleppm.com/api/v3/entities/<entity_external_ref>
External Refs
This endpoint supports External Refs. For more information please refer to the documentation here.
Attributes
Name | Type | Default |
|---|---|---|
| PK<Entity> | |
| ERef<Entity> | |
| String | |
| Object<EntityType> | |
| Object<EntityModel> | |
| DateTime | |
| Boolean |
|
| Boolean |
|
| Boolean |
|
| DateTime | |
| DateTime | |
| Object<EntityLifecycleState> | |
| String |
Example Response
{
"id": 1,
"name": "A new project",
"type": {
"id": 1,
"name": "Product"
},
"model": {
"id": 1,
"name": "Product",
"icon": "circle",
"color": "#55C1E8"
},
"init_start_date": "2023-03-20",
"created_at": "2023-03-20T10:13:24.330367Z",
"updated_at": "2023-03-202T17:41:13.902151Z",
"archived": false,
"published": true,
"template": false,
"lifecycle_state": {
"id": 2,
"name": "Active",
"icon": "play-circle-outline",
"color": "#035980"
},
"code": "ABC123",
"external_ref": "ABC123"
}