List Api Keys
GET/keys
List all API keys associated with the authenticated user.
Args: request (Request): The incoming request object.
Returns: List[ListAPIKeysResponse]: A list of API Keys associated with the user.
Responses
- 200
Successful Response
- application/json
- Schema
- Example (from schema)
Schema
Array [
- MOD1
- MOD1
]
prefix Prefix (string)required
created_at Created At (string)required
last_used_at
object
anyOf
string
expiration_date
object
anyOf
string
[
{
"prefix": "string",
"created_at": "string",
"last_used_at": "string",
"expiration_date": "string"
}
]
Loading...