# Get revoked token IDs

Get `https://app.mk.io/.well-known/revoked.json`

Get a list of revoked token IDs. These will be the ID values found in the `jti` property of the decoded JWT.

If the `jti` value matches one of the IDs in the returned list then it should be considered as revoked and treated as invalid.

No permissions required.

## Authentication

Authorization Bearer

Bearer authentication of the form `Bearer <token>`, where token is your auth token.

## Response

**200 OK**  
revokedTokens list of strings Required  
List of token IDs that are revoked.

## Errors

**400 Bad Request**  
error object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail) Required  
Pertinent information about the error  
- **code** string Required  
- **detail** string Required  
- **extraDetail** map from strings to any Optional

**401 Unauthorized**  
error object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail) Required  
Pertinent information about the error  
- **code** string Required  
- **detail** string Required  
- **extraDetail** map from strings to any Optional

**403 Forbidden**  
error object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail) Required  
Pertinent information about the error  
- **code** string Required  
- **detail** string Required  
- **extraDetail** map from strings to any Optional

**404 Not Found**  
error object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail) Required  
Pertinent information about the error  
- **code** string Required  
- **detail** string Required  
- **extraDetail** map from strings to any Optional

**429 Too Many Requests**  
error object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail) Required  
Pertinent information about the error  
- **code** string Required  
- **detail** string Required  
- **extraDetail** map from strings to any Optional

**500 Internal Server Error**  
error object [ErrorDetail](https://docs.mediakind.com/api-reference/management-api/schemas/errordetail) Required  
Pertinent information about the error  
- **code** string Required  
- **detail** string Required  
- **extraDetail** map from strings to any Optional
