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

Create a network

POST
https://api.donoratlas.com/v1/partners/networks
POST
/v1/partners/networks
$curl -X POST https://api.donoratlas.com/v1/partners/networks \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "Executive Leadership Team",
> "color": "indigo"
>}'
1{
2 "network_id": "a3f1c9d2-4b7e-4f8a-9c3d-2e5b7f6a1d9e",
3 "name": "Executive Leadership Team",
4 "color": "indigo",
5 "created_at": "2024-06-10T09:15:00Z"
6}
Create a new named network for organizing contacts who can facilitate warm introductions.
Was this page helpful?
Previous

List all networks

Next
Built with

Authentication

x-api-keystring

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

Request

This endpoint expects an object.
namestringRequired1-100 characters
Display name for the network
colorenumRequired
Color for the network badge

Response

Successful Response
network_idstring
namestring
colorenum
Color options for donor networks
created_atstring

Errors

422
Unprocessable Entity Error