Skip to main content

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

    workspace_id stringrequired

Query Parameters

    privileged boolean

    Whether the request is with elevated access.

    properties boolean

    Whether or not to include entity.properties.

    clean_params boolean

    Whether or not to clean the params before returning.

    param_types boolean

    Whether or not to include entity.param_types.

    summary_types boolean

    Whether or not to include entity.summary_types.

    entity_type string[]

    Possible values: non-empty

    Allows filtering on id (int) or class_name (string).

    sort string[]

    Possible values: non-empty

    Allowed values: name, updated_at, summary_updated_at and/or summary.

    name string

    Possible values: non-empty

    search string

    Possible values: non-empty

    Allow for fuzzy name match.

    only_name boolean
    created_by integer[]

    Specify one or more user ids. This field is not allowed on public workspace entities endpoint.

    last_updated_by integer[]

    Specify one or more user ids. This field is not allowed on public workspace entities endpoint.

    created_at_min date-time

    Created after specified date (ISO format).

    created_at_max date-time

    Created before specified date (ISO format).

    updated_at_min date-time

    Updated after specified date (ISO format).

    updated_at_max date-time

    Updated before specified date (ISO format).

    id integer[]

    Filter on specific entity id.

    limit integer

    Possible values: >= 1

    Number of results to return per page.

    offset integer

    The initial index from which to return the results.

Responses

Schema

    count integerrequired

    Count of all the objects in the result set.

    next string

    Next url.

    previous string

    Previous url.

    results

    object[]

    required

  • Array [

  • id integer
    name string
    properties objectnullable
    summary_status string
    summary string
    summary_updated_at string
    summary_types string
    deleted string
    locked boolean
    locked_by objectnullable
    entity_type integerrequired
    entity_type_name string
    updated_at string
    parent_count integer
    actions object[]nullable
    param_types string
    created_by integernullable
    created_at string
    last_updated_by integernullable
    path integer[]
    show_on_dashboard boolean
  • ]

Loading...