Get Refresh Tokens
POSThttps://$CUSTOM-DOMAIN/auth/v1/users/me/tokens/refresh/_search
Returns the list of refresh tokens of the authenticated user.
Request​
- application/json
- application/grpc
- application/grpc-web+proto
Body
required
object
Body
required
object
Body
required
object
Responses​
- 200
- default
A successful response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
details
object
result
object[]
{
"details": {
"totalResult": "2",
"processedSequence": "267831",
"viewTimestamp": "2025-03-21T10:51:27.129Z"
},
"result": [
{
"id": "69629023906489455",
"details": {
"sequence": "2",
"creationDate": "2025-03-21T10:51:27.129Z",
"changeDate": "2025-03-21T10:51:27.129Z",
"resourceOwner": "69629023906488334"
},
"clientId": "69629023906488334@ZITADEL",
"authTime": "2023-02-13T08:45:00.000000Z",
"idleExpiration": "2023-02-14T08:45:00.000000Z",
"expiration": "2023-02-14T08:45:00.000000Z",
"scopes": [
"openid",
"email",
"profile",
"offline_access"
],
"audience": [
"69629023906488334@ZITADEL",
"69629023906481256"
]
}
]
}
- Schema
- Example (from schema)
Schema
details
object
result
object[]
{
"details": {
"totalResult": "2",
"processedSequence": "267831",
"viewTimestamp": "2025-03-21T10:51:27.131Z"
},
"result": [
{
"id": "69629023906489455",
"details": {
"sequence": "2",
"creationDate": "2025-03-21T10:51:27.131Z",
"changeDate": "2025-03-21T10:51:27.131Z",
"resourceOwner": "69629023906488334"
},
"clientId": "69629023906488334@ZITADEL",
"authTime": "2023-02-13T08:45:00.000000Z",
"idleExpiration": "2023-02-14T08:45:00.000000Z",
"expiration": "2023-02-14T08:45:00.000000Z",
"scopes": [
"openid",
"email",
"profile",
"offline_access"
],
"audience": [
"69629023906488334@ZITADEL",
"69629023906481256"
]
}
]
}
- Schema
- Example (from schema)
Schema
details
object
result
object[]
{
"details": {
"totalResult": "2",
"processedSequence": "267831",
"viewTimestamp": "2025-03-21T10:51:27.132Z"
},
"result": [
{
"id": "69629023906489455",
"details": {
"sequence": "2",
"creationDate": "2025-03-21T10:51:27.132Z",
"changeDate": "2025-03-21T10:51:27.132Z",
"resourceOwner": "69629023906488334"
},
"clientId": "69629023906488334@ZITADEL",
"authTime": "2023-02-13T08:45:00.000000Z",
"idleExpiration": "2023-02-14T08:45:00.000000Z",
"expiration": "2023-02-14T08:45:00.000000Z",
"scopes": [
"openid",
"email",
"profile",
"offline_access"
],
"audience": [
"69629023906488334@ZITADEL",
"69629023906481256"
]
}
]
}
An unexpected error response.
- application/json
- application/grpc
- application/grpc-web+proto
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- Schema
- Example (from schema)
Schema
code int32
message string
details
object[]
{
"code": 0,
"message": "string",
"details": [
{
"@type": "string"
}
]
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L 'https://$CUSTOM-DOMAIN/auth/v1/users/me/tokens/refresh/_search' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
-d '{}'
ResponseClear