Retrieve Transaction Statuses
Retrieves the list of possible transaction status codes together with a short description.
URL test:
Method:
GET
Path items:
/trancore/transactionstatus
Parameters:
None
Example:
Responses:
200 - OK
Status Code: 200 OK
[
{
"code": "APPROVED",
"description": "APPROVED"
},
{
"code": "DECLINED",
"description": "DECLINED"
},
{
"code": "CANCELLED",
"description": "CANCELLED"
},
{
"code": "MODIFIED",
"description": "MODIFIED"
},
{
"code": "POSTED",
"description": "POSTED"
},
{
"code": "RELEASED",
"description": "RELEASED"
},
{
"code": "POSTED_REVERSED",
"description": "POSTED_REVERSED"
},
{
"code": "DISPUTED",
"description": "DISPUTED"
},
{
"code": "DISPUTED_REVERSED",
"description": "DISPUTED_REVERSED"
},
{
"code": "UNKNOWN",
"description": "UNKNOWN"
}
]
| Parameter | Location | Type | Description |
|---|---|---|---|
| code | root | string | Status code (e.g., APPROVED, DECLINED). |
| description | root | string | Human‑readable description of the status. |
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/transactionstatus"
}
| 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. |