Skip to main content
Version: v41

status

Standard status response

versionstringrequired

The version number of the microservice. Scheme major.minor.patch (build number).

api_versionstring

Newest supported API version (v1, v2, ..)

statusstring

Possible values: [RUNNING, WARNING, ERROR, PENDING]

status_messagestring

Describes the pending or running state of the microservice.

issues object[]

A list of active issues, which can represent warnings, errors or informational notices.

  • Array [
  • severitystringrequired

    Possible values: [NOTICE, WARNING, ERROR]

    codestringrequired
    messagestringrequired
    createdstring<date-time>

    When the issue was first logged

    updatedstring<date-time>

    When the issue was previously logged

  • ]
  • status_details object[]

    A key-value list of relevant status values for the microservice, calls per second, last import etc.

  • Array [
  • kstring

    The key

    vstring

    The value

  • ]
  • app_idstring<uuid>

    Unique UUID for the microservice, generated at startup

    start_timestring<date-time>

    The datetime when the status was issued

    status
    {
    "version": "string",
    "api_version": "string",
    "status": "RUNNING",
    "status_message": "string",
    "issues": [
    {
    "severity": "NOTICE",
    "code": "string",
    "message": "string",
    "created": "2024-07-29T15:51:28.071Z",
    "updated": "2024-07-29T15:51:28.071Z"
    }
    ],
    "status_details": [
    {
    "k": "string",
    "v": "string"
    }
    ],
    "app_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "start_time": "2024-07-29T15:51:28.071Z"
    }