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

Rename a network

PUT
https://api.donoratlas.com/v1/partners/networks/:network_id
PUT
/v1/partners/networks/:network_id
$curl -X PUT https://api.donoratlas.com/v1/partners/networks/network_id \
> -H "x-api-key: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "name": "Community Outreach Network"
>}'
1{
2 "network_id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890",
3 "name": "Community Outreach Network",
4 "color": "teal",
5 "created_at": "2023-11-20T09:15:00Z"
6}
Update the display name of a network.
Was this page helpful?
Previous

Delete a network

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.
namestringRequired1-100 characters
New display name for the network

Response

Successful Response
network_idstring
namestring
colorenum
Color options for donor networks
created_atstring

Errors

422
Unprocessable Entity Error