Auth0 · Schema
UpdateRefreshTokenResponseContent
AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The ID of the refresh token |
| user_id | string | ID of the user which can be used when interacting with other APIs. |
| created_at | object | |
| idle_expires_at | object | |
| expires_at | object | |
| device | object | |
| client_id | string | ID of the client application granted with this refresh token |
| session_id | object | |
| rotating | boolean | True if the token is a rotating refresh token |
| resource_servers | array | A list of the resource server IDs associated to this refresh-token and their granted scopes |
| refresh_token_metadata | object | |
| last_exchanged_at | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UpdateRefreshTokenResponseContent",
"title": "UpdateRefreshTokenResponseContent",
"type": "object",
"additionalProperties": true,
"properties": {
"id": {
"type": "string",
"description": "The ID of the refresh token"
},
"user_id": {
"type": "string",
"description": "ID of the user which can be used when interacting with other APIs.",
"default": "auth0|507f1f77bcf86cd799439020"
},
"created_at": {
"$ref": "#/components/schemas/RefreshTokenDate"
},
"idle_expires_at": {
"$ref": "#/components/schemas/RefreshTokenDate"
},
"expires_at": {
"$ref": "#/components/schemas/RefreshTokenDate"
},
"device": {
"$ref": "#/components/schemas/RefreshTokenDevice"
},
"client_id": {
"type": "string",
"description": "ID of the client application granted with this refresh token"
},
"session_id": {
"$ref": "#/components/schemas/RefreshTokenSessionId"
},
"rotating": {
"type": "boolean",
"description": "True if the token is a rotating refresh token"
},
"resource_servers": {
"type": "array",
"description": "A list of the resource server IDs associated to this refresh-token and their granted scopes",
"items": {
"$ref": "#/components/schemas/RefreshTokenResourceServer"
}
},
"refresh_token_metadata": {
"$ref": "#/components/schemas/RefreshTokenMetadata"
},
"last_exchanged_at": {
"$ref": "#/components/schemas/RefreshTokenDate"
}
}
}