Skip to main content
GET
/
tenant
/
{tenantId}
/
token_management
/
token
/
last_transactions
Retrieves the last transactions for token configurations within a tenant.
curl --request GET \
  --url https://api.example.com/tenant/{tenantId}/token_management/token/last_transactions
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

Query Parameters

TenantId
integer<int64> | null

Optional identifier to filter transactions by tenant.

Example:

1024

TokenConfigurationId
integer<int64> | null

Optional identifier to filter transactions by token configuration.

Example:

512

Count
integer<int32> | null

Optional limit on the number of transactions to return.

Example:

50

Response

200 - application/json

Token transactions retrieved successfully.

Wrapper for API operation results containing success status, error information, and return value.

isSuccess
boolean

True if the operation completed successfully, false otherwise.

Example:

true

isFailure
boolean

True if the operation failed, false otherwise.

Example:

false

error
object

Error information returned when the operation fails.

Example:
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}
value
object[] | null

The result value returned when the operation is successful.