Skip to main content
POST
/
cloudflare
/
accounts
/
{accountId}
/
members
Add account member
curl --request POST \
  --url https://nimbussuite.com/api/v1/cloudflare/accounts/{accountId}/members \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "[email protected]",
  "keyId": "<string>"
}
'
{
  "success": true,
  "data": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

accountId
string
required

Body

application/json
email
string<email>
required
keyId
string
required

Response

Member added successfully

success
boolean
data
object