Create a new share recipient
POST/accounts/{account_id}/shares/{share_id}/recipients
Adds a recipient to a resource share, granting them access to the shared resources.
Security
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Body ParametersJSON
Deprecatedaccount_id: optional string
Deprecated alias for recipient_account_id. Use recipient_account_id instead.
The body field collided with the URL path parameter of the same name, which prevented SDK generators from distinguishing the source account (in the URL) from the recipient account (in the body). Both names will continue to be accepted until 2027-05-26 (see x-sunset).
maxLength32
Create a new share recipient
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/shares/$SHARE_ID/recipients \
-H 'Content-Type: application/json' \
-H "X-Auth-Email: $CLOUDFLARE_EMAIL" \
-H "X-Auth-Key: $CLOUDFLARE_API_KEY" \
-d '{
"account_id": "023e105f4ecef8ad9ca31a8372d0c353",
"organization_id": "023e105f4ecef8ad9ca31a8372d0c353",
"recipient_account_id": "023e105f4ecef8ad9ca31a8372d0c353"
}'{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"id": "3fd85f74b32742f1bff64a85009dda07",
"account_id": "023e105f4ecef8ad9ca31a8372d0c353",
"association_status": "associating",
"created": "2023-09-21T18:56:32.624632Z",
"modified": "2023-09-21T18:56:32.624632Z",
"resources": [
{
"error": "Recipient is missing necessary entitlement",
"resource_id": "023e105f4ecef8ad9ca31a8372d0c353",
"resource_version": 0,
"terminal": true
}
]
}
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"id": "3fd85f74b32742f1bff64a85009dda07",
"account_id": "023e105f4ecef8ad9ca31a8372d0c353",
"association_status": "associating",
"created": "2023-09-21T18:56:32.624632Z",
"modified": "2023-09-21T18:56:32.624632Z",
"resources": [
{
"error": "Recipient is missing necessary entitlement",
"resource_id": "023e105f4ecef8ad9ca31a8372d0c353",
"resource_version": 0,
"terminal": true
}
]
}
}