Skip to main content
GET
/
tenant
/
{tenantId}
/
token_configuration
/
{id}
Retrieves a specific token configuration by identifier.
curl --request GET \
  --url https://api.example.com/tenant/{tenantId}/token_configuration/{id}
{
  "isSuccess": true,
  "isFailure": false,
  "error": null,
  "value": {
    "id": 42,
    "name": "Example"
  }
}

Path Parameters

tenantId
integer<int64>
required

Identifier of the tenant.

id
integer<int64>
required

Identifier of the token configuration.

Response

200 - application/json

Token configuration 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

The result value returned when the operation is successful.

Example:
{
"id": "42",
"name": "Stable Asset Token",
"ticker": "SAT",
"description": "A stable token backed by USD and EUR",
"tenantId": "1024",
"tokenAssets": [
{
"id": 1,
"asset": { "code": "USD" },
"weight": 0.6
},
{
"id": 2,
"asset": { "code": "EUR" },
"weight": 0.4
}
]
}