Decrypt user API key

This endpoint allows you to decrypt the API key for an authenticated user. See Using Global API Keys for more information on permission and scope requirements.

SecuritybearerAuth
Request
path Parameters
userId
required
integer <int64>

The ID of the user to decrypt keys for.

id
required
integer <int64>

The ID of the API key to decrypt

query Parameters
o
required
integer <int64>

The target organization

Responses
200

Successful Operation

4XX

Invalid Request

default

Invalid Request

post/users/{userId}/api_keys/{id}/decrypt
Request samples
$apiKey = 'your_automox_api_key'
$headers = @{ "Authorization" = "Bearer $apiKey" }
$url = 'https://console.automox.com/api/users/{98765}/api_keys/999999/decrypt?o=0000'
$response = (Invoke-WebRequest -Method Post -Uri $url -Headers $headers -ContentType "application/json").Content
Response samples
application/json
{
  • "api_key": "string"
}