Skip to main content
PUT
/
tenant
/
{tenantId}
/
token_configuration
/
{id}
/
identity
Updates the identity information (name, ticker, etc.) of a token configuration.
curl --request PUT \
  --url https://api.example.com/tenant/{tenantId}/token_configuration/{id}/identity \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": 512,
  "tenantId": 1024,
  "name": "United States Dollar Coin",
  "ticker": "USDC"
}
'
{
  "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.

Body

application/json

Request containing updated identity information.

Request to update the identity properties of a token configuration.

id
integer<int64>

Identifier of the token configuration to update.

Example:

512

tenantId
integer<int64>

Identifier of the tenant that owns the token configuration.

Example:

1024

name
string

New full name for the token.

Example:

"United States Dollar Coin"

ticker
string

New ticker symbol for the token.

Example:

"USDC"

Response

200 - application/json

Token configuration identity updated 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:
{ "success": true }