Skip to main content
POST
/
cloudflare
/
keys
/
save
Save Cloudflare API key
curl --request POST \
  --url https://nimbussuite.com/api/v1/cloudflare/keys/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "key": "<string>",
  "name": "<string>",
  "keyType": "api_key",
  "email": "[email protected]",
  "shareWithOrg": true,
  "orgId": "<string>"
}
'
{
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
key
string
required
name
string
required
keyType
enum<string>
required
Available options:
api_key,
api_token
email
string<email>
shareWithOrg
boolean
orgId
string

Response

API key saved successfully

id
string