Skip to main content

Get Editor Session Messages

GET 

/api/workspaces/:workspace_id/entities/:id/messages/

Fetch system and user messages within an editor session. User should have at least READ permission on the entity to fetch messages.

Request

Path Parameters

    workspace_id stringrequired
    id integerrequired

    A unique integer value identifying this entity.

Query Parameters

    editor_session uuidrequired

    Session identifier (UUID)

Responses

Schema

  • Array [

  • job_id integer

    Id of the job.

    created_at date-time

    Creation date of the job.

    job_label stringnullable

    Possible values: non-empty

    Human readable label of the job.

    job_method_type string

    Possible values: non-empty

    Job method type. It can be one of: pdf, table, svg_and_data, web_and_data, plotly, image_and_data, chat-button, optimise-button, geojson_and_data, plotly_and_data, set-params-button, download-button, ifc_and_data, analyse-button, image, web, geojson, geometry_and_data, svg, data, step-next, ifc, geometry.

    completion_type string

    Possible values: non-empty

    Type of completion. It can be one of: error, error_app_reloading, result, error_user, stopped, expired.

    error_reported boolean

    Shows whether error is reported. Errors can be reported when job is finished with ERROR completion type.

    error_message stringnullable

    Possible values: non-empty

    Error message of the job if finished with ERROR_USER completion type.

    messages

    object[]

    required

    List of last messages.

  • Array [

  • message_type string

    Possible values: non-empty

    Type of the message. It can be one of success, info, warning, started, error, error_app_reloading, result, error_user, stopped, expired

    message string

    Possible values: non-empty

    Message content.

    timestamp date-time

    Timestamp of the message.

  • ]

  • ]

Loading...