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

Add members in bulk

POST
https://api.donoratlas.com/v1/partners/networks/:network_id/members/batch
POST
/v1/partners/networks/:network_id/members/batch
$curl -X POST https://api.donoratlas.com/v1/partners/networks/network_id/members/batch \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "donor_ids": [
> "donor_7890a1b2",
> "donor_3456c7d8"
> ]
>}'
1{
2 "job_id": "job_5f4e3d2c1b"
3}

Add multiple donors to a network. Connection computation runs in the background. Returns a job ID. Use the ‘Check bulk add progress’ endpoint (GET /networks/jobs/{job_id}) to poll until status is ‘completed’, then read the results.

Was this page helpful?
Previous

Check bulk add progress

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 add to the network. Maximum 100 per request

Response

Successful Response
job_idstring

Job ID for tracking progress. Poll GET /networks/jobs/{job_id} to check status

Errors

422
Unprocessable Entity Error