Get Tenant Vff License Token (v2.0)
GET/v2.0/api/tenants/:tenant_id/vfflicenses/:license_id/tokens/:token_id
List a specific tenant Vff license token.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
license_id stringrequired
The license ID.
token_id stringrequired
The token ID.
Responses
- 200
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
id string
The ID of the vff token.
ion_key string
The ION key.
is_expired boolean
Is vff token expired. True or False.
is_multiuse boolean
Is the vff token multiuse. True or False.
is_revoked boolean
Can the vff token be revoked. True or False.
is_used boolean
Is the vff token in use. True or False.
secret_key string
The secret key.
valid_till_secs int64
The token valid time in seconds.
vfflicense_id string
The vff license ID.
{
"id": "string",
"ion_key": "string",
"is_expired": true,
"is_multiuse": true,
"is_revoked": true,
"is_used": true,
"secret_key": "string",
"valid_till_secs": 0,
"vfflicense_id": "string"
}
Loading...