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 new donor list
      • GETGet all lists metadata
      • GETGet single list metadata
      • PATCHRename a list
      • DELDelete a list
      • POSTAdd donors to a list
      • POSTRemove donors from a list
LogoLogo
DonorAtlasDashboard
API ReferenceLists

Remove donors from a list

POST
https://api.donoratlas.com/v1/partners/lists/:list_id/donors/remove
POST
/v1/partners/lists/:list_id/donors/remove
$curl -X POST https://api.donoratlas.com/v1/partners/lists/list_id/donors/remove \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "donor_ids": [
> "donor-abc-123",
> "donor-def-456"
> ]
>}'
Remove one or more donors from an existing list by their DonorAtlas donor IDs.
Was this page helpful?
Previous

Create a network

Next
Built with

Authentication

x-api-keystring

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

Path parameters

list_idstringRequired1-100 characters
ID of the list to remove donors from

Request

This endpoint expects an object.
donor_idslist of stringsRequired
List of DonorAtlas donor IDs to remove

Response

Successful Response

Errors

404
Not Found Error
422
Unprocessable Entity Error