For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
DonorAtlasDashboard
  • Getting Started
    • Welcome
    • Authentication
    • Quickstart
  • Guides
    • Donor Profile Schema
    • Network
    • Credits & Billing
    • Error Handling
  • API Reference
      • POSTCreate a network
      • GETList all networks
      • POSTAdd a member
      • POSTAdd members in bulk
      • GETCheck bulk add progress
      • GETList donors in network
      • POSTFind connected prospects
      • POSTCheck donors against your network
      • GETCheck a donor against your network
      • POSTLook up any donor's connections
      • POSTRemove members
      • PUTRename a network
      • DELDelete a network
LogoLogo
DonorAtlasDashboard
API ReferenceNetworks

Remove members

POST
https://api.donoratlas.com/v1/partners/networks/:network_id/members/remove
POST
/v1/partners/networks/:network_id/members/remove
$curl -X POST https://api.donoratlas.com/v1/partners/networks/network_id/members/remove \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "donor_ids": [
> "dnt-4f7a9c2b8e1d4a3f"
> ]
>}'
1{
2 "failed": [
3 "dnt-9b3e7f1a2c5d6e8f"
4 ]
5}
Remove donors from a network, cleaning up their connections. Returns 204 if all removals succeed. Returns 200 with a list of failed IDs if some succeed but others fail. Returns 500 if all removals fail.
Was this page helpful?
Previous

Rename a network

Next
Built with

Authentication

x-api-keystring

Your DonorAtlas API key. Contact support@donoratlas.com to get started.

Path parameters

network_idstringRequired

Request

This endpoint expects an object.
donor_idslist of stringsRequired
DonorAtlas donor IDs to remove from the network

Response

Some removals failed
failedlist of strings
Donor IDs that could not be removed due to a server error. Safe to retry

Errors

422
Unprocessable Entity Error