Retrieve an SLT's Status History

Retrieve a list of the statuses that have been assigned to a single-leg transaction (SLT) during the transaction processing lifecycle.

Endpoint

GET /v1/transaction-histories

Authorization Header

Authorization: Bearer <access_token>

Query Parameters

transactionId  REQUIRED

string (UUID)

ID of the single-leg transaction (SLT) in the RocketKOR system.

sort

array of strings

Sort the response by any field in ascending or descending order. The default sort order is createdAt,DESC. For more information, see Sorting and Pagination.

page

integer (int32)

Page number to return, based on zero-based page indexing.

size

integer (int32)

Maximum number of results to return per page.

Request Body

None

Returns

Returns a paginated array of SLT Status objects. Each object represents a status that has been assigned to the transaction.

SAMPLE RESPONSE

				
					{
  "totalElements": 2,
  "totalPages": 1,
  "number": 0,
  "numberOfElements": 2,
  "hasNext": false,
  "content": [
    {
      "id": "aafcea88-2b6d-4151-b1ce-9e4deb9547af",
      "transactionId": "23733586-9135-42a5-8365-d0a2ec9eead0",
      "parentTransactionId": "",
      "eventType": "STATUS_CHANGE",
      "description": "Transaction status changed to ‘PENDING’",
      "createdBy": {
        "id": "",
        "type": "internal"
      },
      "createdAt": "2023-02-03T05:00:05.634158Z"
    },
    {
      "id": "d7bed9a7-c55f-4b13-8d46-835f65d06939",
      "transactionId": "23733586-9135-42a5-8365-d0a2ec9eead0",
      "parentTransactionId": "",
      "eventType": "CREATE",
      "description": "New transaction created",
      "createdBy": {
        "id": "",
        "type": "internal"
      },
      "createdAt": "2023-02-03T04:00:05.634158Z"
    }
  ]
}
				
			
Exit mobile version