Skip to content

Mark notification in-progress

Specifies whether a notification is being addressed by an attendant. Setting the in-progress state on the notification does not affect the functionality of any part of the system. It is purely for the benefit of the attendants to improve their workflow.

Endpoint: /api/v1/ops/notify/mark

Verb: POST

Payload:

{
    "show_id":     integer,    // int64 in the DB
    "notify_id":   integer     // as reported by the ops/inspect/notify call
    "in_progress": boolean     // is the operation being worked on
}

Example Response:

{
    "api_code": 0,
    "error": null
}

or

{
    "api_code": xxxx,
    "error": {
        "error_code": xxxxx,
        "error_message": "Erorr message",
        "error_detail": "Optional additional details about error",
        "suggestion": "Optional suggestion on how to resolve error",
        "callstack": "Optional debug callstack."
    }
}

See https://studio.wevr.com/wevr/projects/gem/gem-platform/-/wikis/GEM-API-Codes for error codes contained therein.

See https://studio.wevr.com/wevr/projects/gem/gem-platform/-/wikis/GEM-Server-Codes for error codes contained therein.

More OPS API calls:

API OPS: resetshow
API OPS: getgemusers
API OPS: getdevices
API OPS: assigndevicetouser
API OPS: markready
API OPS: deboardgemgroup
API OPS: deboardgemuser
API OPS: emergencypassthrough
API OPS: showpause
API OPS: outputlevel
API OPS: Inspect Onboard