Sign in

Remove members

documented

Deletes members of a referral program based on a query object.

POST /api/members/removeMembersno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

Note: Referral Rock's official API for removing members uses the DELETE method on /api/members/remove. There is no documented POST variant for this endpoint. The following command uses DELETE as specified in the API docs and includes placeholder-based credentials and body fields. Source: Referral Rock API documentation. ([api.referralrock.com](https://api.referralrock.com/Help/Api/DELETE-api-members-remove))

npx -y keychains@latest curl "https://api.referralrock.com/api/members/remove" \
  -X DELETE \
  -H "Authorization: Basic {{REFERRALROCK_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '[{"query": {"primaryInfo": {"memberId": "{{$member_id}}","referralCode": "{{$referral_code}}"},"secondaryInfo": {"externalIdentifier": "{{$external_identifier}}","email": "{{$email}}"},"tertiaryInfo": {"programId": "{{$program_id}}","programName": "{{$program_name}}","programTitle": "{{$program_title}}"}}}]'