Skip to main content

Status API

Information

The endpoints described in this section are hosted on status.comgate.cz, not on payments.comgate.cz.

Outages

The endpoint returns a list of current, planned and recently resolved outages of payment methods.

URL: GET https://status.comgate.cz/outages

Example response:

[
{
"id": 123,
"name_cs": "Platební karty",
"name_sk": "Platobné karty",
"name_en": "Card payment",
"date_from": "2025-06-07T23:30:00Z",
"date_to": "2025-06-08T00:00:00Z",
"date_published": "2025-06-04T07:05:54Z",
"detail_cs": "V době 8.6.2025 01:30 - 02:00 nedostupnost platby platební kartou.",
"detail_sk": "V čase 8.6.2025 01:30 - 02:00 nedostupnosť platby platobnou kartou.",
"detail_en": "Card payment unavailable on 8.6.2025 01:30 - 02:00.",
"methods": ["CARD_CZ_COMGATE"],
"type": "COMPLETE",
"scheduled": true
}
]

Response parameters:

ParameterTypeDescription
idintegerInternal outage identifier
name_csstringOutage name in Czech
name_skstringOutage name in Slovak
name_enstringOutage name in English
date_fromstringOutage start time in ISO 8601 format (UTC)
date_tostringOutage end time in ISO 8601 format (UTC)
date_publishedstringOutage publication date in ISO 8601 format (UTC)
detail_csstringDetailed outage description in Czech
detail_skstringDetailed outage description in Slovak
detail_enstringDetailed outage description in English
methodsstring[]List of affected payment methods — all available values can be retrieved from the /methods endpoint
typestringOutage type: COMPLETE (full outage), PAYMENT_BUTTON (payment button), QR_CODE (QR payment)
scheduledbooleantrue — planned maintenance, false — unplanned outage

Payment Gateway Status

The endpoint returns the current status of the payment gateway.

URL: GET https://status.comgate.cz/health

Example response:

{
"gateway": "OK",
"date": "2025-06-04T07:05:54Z"
}

Response parameters:

ParameterTypeDescription
gatewaystringOK — payments can be created via methods that are not currently experiencing an outage.
OUTAGE — complete gateway outage.
datestringCurrent server date and time in ISO 8601 format (UTC)