---
title: "ServiceStatusResponseEntry"
url: "https://apiportal.six-group.com/apis/sic-service-status-api-v1-ch-v1/versions/0b356479-467d-4f2b-8689-37b87cd8508a/schemas/ServiceStatusResponseEntry"
---

> Full API specification: https://apiportal.six-group.com/apis/sic-service-status-api-v1-ch-v1/versions/0b356479-467d-4f2b-8689-37b87cd8508a.md

# ServiceStatusResponseEntry

Status data for one service.

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: SIC Status API v1
  version: 1.0 (generated 2024-06-27T11:51:13Z)
servers:
  - url: https://api.six-group.com/api/sic/pci_p/status/v1
  - url: https://api.p2p.six-group.com/api/sic/pci_p/status/v1
  - url: https://api.fip.six-group.com/api/sic/pci_p/status/v1
components:
  schemas:
    ServiceStatusResponseEntry:
      required:
        - serviceIdentification
        - status
        - timestamp
      type: object
      properties:
        serviceIdentification:
          maxLength: 10
          minLength: 1
          type: string
          description: |
            Values for Production Services: PCI_P 
            Values for Test environments:
            - SIC IP service: XCI_E; ACI_E; XCI_P; ACI_P; VCI_E; VCI_P
          example: PCI_P
        status:
          maxLength: 20
          minLength: 2
          type: string
          description: Status information for the service is either UP or DOWN or UNKNOWN.
          example: UP
        timestamp:
          type: string
          description: Date and time (according to ISO 8601) at which this status data was
            last checked.
          format: date-time
          example: 2024-12-21T10:52:05.1904957+01:00
      description: Status data for one service.
```
