Skip to main content
POST
/
cloudflare
/
api-keys
Save API key
curl --request POST \
  --url https://nimbussuite.com/api/v1/cloudflare/api-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "apiKey": "<string>",
  "name": "<string>",
  "keyType": "api_key",
  "email": "[email protected]"
}
'
{
  "id": "<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
name
string
required
keyType
enum<string>
required
Available options:
api_key,
api_token
email
string<email>

Response

API key saved successfully

id
string