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": {}
}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": {}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?