This route is used to retrieve the sequence of events that happened within a particular timeframe.
This includes transactions, errors, orchestrations and jobs, ordererd by timestamp in an ascending order.
This endpoint is paginated, up to 100 records can be retrieved per call.
This endpoint can be called by applications with access to scope "readSequencer".
The number of rows being retrieved. Must be a positive integer.
The offset (i.e. row start index). Must be a positive integer (or 0).
The start date from which the transactions are to be retrieved. If not provided then the system will retrieve transactions from the very first record.
The end date until which the transactions are to be retrieved. If not provided then the current timestamp will be considered.
GET /external/v1/sequencer HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"sequence": [
{
"transaction": {
"processId": "3f50c1e2-1c4b-4b8b-9a6e-2b5e4e5f6a7b",
"timestamp": "2024-09-12T00:00:00.000Z",
"status": "success",
"orchestrationId": "1234c1e2-1c4b-9865-9a6e-2b5e4e5f6555",
"type": "issuance",
"method": "createInvestment",
"orgId": "OG123",
"blockchainDetails": {
"transactionId": "456789OIJHGFCVGHJKLKJHGF67JH",
"blockNumber": 350,
"channelName": "og123"
},
"details": {
"assetIds": [
"US9QIMAOAS1Q",
"US9QI5647S1P"
],
"securityIds": [
"USCCWSF01I00"
]
}
}
},
{
"error": {
"errorId": "2159457f-0167-4e93-a969-9cf0db05e0bf",
"timestamp": "2024-09-12T00:00:00.000Z",
"action": {
"httpData": {
"method": "POST",
"url": "/v1/external/error-log"
},
"name": "Create Error Log Record",
"id": "PM001"
}
}
},
{
"orchestration": {
"orchestrationId": "1234c1e2-1c4b-9865-9a6e-2b5e4e5f6555",
"startDate": "2024-09-12T00:00:00.000Z",
"status": "success",
"timestamp": "2024-09-12T00:00:00.000Z",
"processIds": [
"12340c1e2-1c4b-4b8b-9a6e-2b5e4e5f5678",
"abcdc1e2-1c4b-4b8b-9a6e-2b5e4e5fmnbv"
]
}
}
],
"grantedTxnEntitlements": [
{
"processId": "3f50c1e2-1c4b-4b8b-9a6e-2b5e4e5f6a7b",
"timestamp": "2024-09-12T00:00:00.000Z",
"status": "success",
"orchestrationId": "1234c1e2-1c4b-9865-9a6e-2b5e4e5f6555",
"type": "referenceData",
"method": "setReferenceDataHash",
"orgId": "OG123",
"blockchainDetails": {
"transactionId": "456789OIJHGFCVGHJKLKJHGF67JH",
"blockNumber": 350,
"channelName": "og123"
},
"details": {
"investorIds": [
"US9QIMAOAS1Q"
],
"accountIds": [
"US9QI5678S1P"
],
"fileIds": [
"US9QIMLKJ1Q",
"US9QIYUHTS5L"
],
"advisorIds": [
"US9QIYHJKRDF"
]
}
}
]
}