Skip to content

Retrieve Clearing and Settlement Service codes

Retrieves the list of settlement‑service codes used for clearing and settlement operations.

URL test:

    https://test.lightcms.io/trancore/v1/trancore/settlementservices

Method:

GET

Path items:

/trancore/settlementservices

Parameters:

None

Example:

    curl -X GET "https://test.lightcms.io/trancore/v1/trancore/settlementservices" \
         -H 'accept: */*'

Responses:

200 - OK

Status Code: 200 OK

[
  {
    "clearingCode": "0",
    "settlementCode": "001",
    "description": "INTERNATIONAL"
  },
  {
    "clearingCode": "3",
    "description": "Clearing only International settlement"
  },
  {
    "clearingCode": "4",
    "description": "Clearing only national net settlement"
  },
  {
    "clearingCode": "8",
    "settlementCode": "017",
    "description": "CZECH_NATIONAL"
  },
  {
    "clearingCode": "9",
    "description": "Base II selects the appropriate settlement service"
  }
]

Parameter Location Type Description
clearingCode root string Code identifying the clearing service (e.g., 0, 3, 4, 8, 9).
settlementCode root string Optional settlement service code (present for some clearing codes).
description root string Human‑readable description of the service.
500 - Internal error

Status Code: 500 Internal error

{
  "timestamp": "2025-07-22T13:09:02.348+02:00",
  "status": 500,
  "error": "Internal Server Error",
  "path": "/cms/v1/trancore/settlementservices"
}

Parameter Location Type Description
timestamp root string ISO‑8601 timestamp when the error occurred.
status root integer HTTP status code (500).
error root string Short description of the error.
path root string The request path that caused the error.