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

Create a new donor list

POST
https://api.donoratlas.com/v1/partners/lists
POST
/v1/partners/lists
$curl -X POST https://api.donoratlas.com/v1/partners/lists \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "list_name": "Major Donors 2024"
>}'
1{
2 "list_id": "list-789xyz",
3 "list_name": "Major Donors 2024",
4 "successful_ids": []
5}
Create a new donor list for the team. Optionally populate it with donor IDs on creation. List names must be unique within a team.
Was this page helpful?
Previous

Get all lists metadata

Next
Built with

Authentication

x-api-keystring

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

Request

This endpoint expects an object.
list_namestringRequired1-255 characters

Name for the new list (must be unique within the team)

donor_idslist of strings or nullOptional
Optional list of DonorAtlas donor IDs to add to the list on creation

Response

Successful Response
list_idstring
ID of the newly created list
list_namestring
Name of the newly created list
successful_idslist of strings
Donor IDs that were successfully added to the list

Errors

409
Conflict Error
422
Unprocessable Entity Error