v1
latestOpenAPI 3.0.02026-07-17647099.1 KBIdentity
Get Identity State Transactions
Endpoint to get identity state transactions. To get all transactions, use the filter all. To get the latest transaction, use the filter latest. The transactions are paginated for filter=all. If the filter is not provided, the default is all.
get/v2/identities/{identifier}/state/transactions
Path parameters
identifierstring required
Issuer identifier
Query parameters
filter'all' | 'latest'
pageinteger
Example:5
Page to fetch. First is 1. If not provided, default is 1.
max_resultsinteger
Example:10
Number of items to fetch on each page. Default is 10.
sortstring[]
The minus sign (-) before createdAt means descending order.
Response
State transactions
Example response
{
"items": [
{
"id": 1,
"txID": "0x8f271174b45ba7892d83...",
"state": "13f9aadd4801d775e85a7ef45c2f6d02cdf83f0d724250417b165ff9cd88ee21",
"publishDate": "2023-10-26T10:59:08Z",
"status": "published"
}
],
"meta": {
"total": 1,
"page": 1,
"max_results": 50
}
}