List all Entities
URL
GET https://<tenant>.bubbleppm.com/api/v3/entities/
Pagination
This endpoint has pagination enabled per the description on the pagination documentation.
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 |
Filter Parameters
API Requests | Search-&-Parameters
Name | Type |
|---|---|
| Date |
| Date |
| Date |
| Date |
| Date |
| Date |
| 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"
},
{
"id": 2,
"name": "A newer 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": "DEF456",
"external_ref": "DEF456"
}
]