teams
List all team API Keys
get/teams/{team_name}/apikeys
Path parameters
team_namestring required
The unique name for the team.
Example:cloudquery
Query parameters
per_pageinteger
The number of results per page (max 1000).
pageinteger
Page number of the results to fetch
Response
Response
Example response
{
"items": [
{
"name": "cli-api-key",
"created_by": "user@example.com",
"id": "12345678-1234-1234-1234-1234567890ab",
"key": "1234567890abcdef1234567890abcdef",
"created_at": "2017-07-14T16:53:42Z",
"expires_at": "2017-07-14T16:53:42Z",
"last_access_at": "2017-07-14T16:53:42Z"
}
]
}