Skip to main content
POST
/
cloudflare
/
keys
/
validate
Validate Cloudflare API key
curl --request POST \
  --url https://nimbussuite.com/api/v1/cloudflare/keys/validate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "apiKey": "<string>",
  "keyType": "api_token",
  "email": "[email protected]"
}
'
{
  "isValid": true,
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
apiKey
string
required
keyType
enum<string>
required
Available options:
api_token,
api_key
email
string<email>

Response

API key validation result

isValid
boolean
message
string