delete

/v4/campaigns/{id}/access/revoke

Revoke access to a private campaign for a specific address.

Request body

object
userAddressstring
required
Ethereum address to grant/revoke access
canManageAccessbooleandefault: falseWhether the user can manage (grant/revoke) access for others

Responses

200
Response for status 200
Schema
object
successboolean
required
messagestring
required
Example
{
  "success": false,
  "message": "string"
}
delete
https://api.merkl.xyz/v4/campaigns/{id}/access/revoke
Merkl API
curl -X DELETE "https://api.merkl.xyz/v4/campaigns/{id}/access/revoke" \
  -H "Content-Type: application/json" \
  -d '{ "canManageAccess": false }'
Current params
{
  "body": {
    "canManageAccess": false
  }
}
Live request — this will call https://api.merkl.xyz/ for real.