Get All Entities of an Entity Type
GET/api/workspaces/:workspace_id/entity_types/:id/entities/
Get all entities of an entity type.
Request
Path Parameters
Query Parameters
Whether the request is with elevated access.
Whether or not to include entity.properties.
Whether or not to clean the params before returning.
Whether or not to include entity.param_types.
Whether or not to include entity.summary_types.
Possible values: non-empty
Allows filtering on id (int) or class_name (string).
Possible values: non-empty
Allowed values: name, updated_at, summary_updated_at and/or summary.
Possible values: non-empty
Possible values: non-empty
Allow for fuzzy name match.
Specify one or more user ids. This field is not allowed on public workspace entities endpoint.
Specify one or more user ids. This field is not allowed on public workspace entities endpoint.
Created after specified date (ISO format).
Created before specified date (ISO format).
Updated after specified date (ISO format).
Updated before specified date (ISO format).
Filter on specific entity id.
Possible values: >= 1
Number of results to return per page.
The initial index from which to return the results.
Responses
- 200
- 401
- 403
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Count of all the objects in the result set.
Next url.
Previous url.
results
object[]
required
{
"count": 0,
"next": "string",
"previous": "string",
"results": [
{
"id": 0,
"name": "string",
"properties": {},
"summary_status": "string",
"summary": "string",
"summary_updated_at": "string",
"summary_types": "string",
"deleted": "string",
"locked": true,
"locked_by": {},
"entity_type": 0,
"entity_type_name": "string",
"updated_at": "string",
"parent_count": 0,
"actions": [
{}
],
"param_types": "string",
"created_by": 0,
"created_at": "string",
"last_updated_by": 0,
"path": [
0
],
"show_on_dashboard": false
}
]
}
No authentication found or authentication is not correct.
Specified path is not allowed
Permission evaluation:
(Is Authenticated Organization Admin OR Workspace Context Permission) AND Is Not Editor App Workspace Context
Descriptions:
Is Authenticated Organization Admin : User must be an Organization Admin.
Workspace Context Permission : Checks whether the user has access rights to the context workspace.
Is Not Editor App Workspace Context : Not available for editor type apps.