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

Check bulk add progress

GET
https://api.donoratlas.com/v1/partners/networks/jobs/:job_id
GET
/v1/partners/networks/jobs/:job_id
$curl https://api.donoratlas.com/v1/partners/networks/jobs/job_id \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "job_id": "job_9f8b7c6d5e4a3b2c1d0e",
3 "status": "processing",
4 "progress": 45,
5 "total": 100,
6 "results": null
7}
Poll the progress of a bulk member add started by 'Add members in bulk'. Returns the current status and how many donor IDs have been processed. When status is 'completed', includes a `results` object with the final breakdown: `added_ids` (successfully added), `not_found_ids` (IDs not in the DonorAtlas database), and `failed_ids` (IDs that encountered a server error — safe to retry).
Was this page helpful?
Previous

List donors in network

Next
Built with

Poll the progress of a bulk member add started by ‘Add members in bulk’. Returns the current status and how many donor IDs have been processed. When status is ‘completed’, includes a results object with the final breakdown: added_ids (successfully added), not_found_ids (IDs not in the DonorAtlas database), and failed_ids (IDs that encountered a server error — safe to retry).

Authentication

x-api-keystring

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

Path parameters

job_idstringRequired

Response

Successful Response
job_idstring
statusenum
Status of a bulk add job
Allowed values:
progressinteger
Number of donor IDs processed so far
totalinteger
Total number of donor IDs submitted in this job
resultsobject or null
Final breakdown. Present when status is 'completed'

Errors

422
Unprocessable Entity Error