Skip to content

Get Card statuses

Returns the status history for a specific CMS card identified by its internal id. The response is an array of status entries, each containing the status, timestamps, and related metadata.

URL test:

https://test.lightcms.io/cms/v1/cards/{id}/statuses

Method:

GET

Path items:

/cards

/{id}

/statuses

Parameters:

Parameter Location Type Example Description Required
id path string 40 CMS internal card unique ID Yes

Example:

curl -X 'GET' \
     'https://test.lightcms.io/cms/v1/cards/4/statuses' \
     -H 'accept: */*'

Responses:

200 - OK

Status Code: 200 OK

[
  {
    "cardId": 40,
    "status": "DIGITALLY_ACTIVE",
    "updatedBy": "system",
    "updatedAt": "2024-10-22T00:30:09.694706+02:00",
    "requestId": "f3d9e39a-f903-423b-99bf-d29d17b1302d",
    "statusExternal": "DIGITALLY_ACTIVE"
  }
]
404 - Not Found

Status Code: 404 Not Found

{
  "errorMessage": "Entity with id 40 not found in DB."
}
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/cards/40/statuses"
}