Managing API keys through Otto API
Data Api Keys
Get all currently active keys
GET /api/api-key
Returns an array of API Keys
Delete an APIKey
DELETE /api/api-key/\<apiKey>
Deletes the designated key
Admin API Keys
Create an admin API key
POST /api/admin-api-key
Body:
{
"scope": "$scope-string"
}
where "$scope-string" is either
- migrationonly
- fullaccess
Authenticate with Basic Auth using your server admin credentials.
Get all currently active keys
GET /api/-admin-api-key
Returns an array of API Keys
Delete an APIKey
DELETE /api/admin-api-key/\<apiKey>
Deletes the designated key