500 error on all POST requests to `constituent/v1/constituents`
I am getting a 500 error when adding constituents. Before the weekend the response was OK, now an error. Is this being looked into?
This is using Visual Studio 2022, C#, adapting the copperplate from SKI api. I am able to UPDATE other fields but this endpoint https://api.sky.blackbaud.com/constituent/v1/constituents is returning the 500 code (see below)
StatusCode: 500, ReasonPhrase: 'Internal Server Error', Version: 1.1, Content: System.Net.Http.HttpConnectionResponseContent, Headers:
{
Cache-Control: no-cache
Pragma: no-cache
Strict-Transport-Security: max-age=31536000;includeSubDomains
Content-Security-Policy: frame-ancestors 'self' https://host.nxt.blackbaud.com
X-Content-Type-Options: nosniff
section-io-id: 3a4bf2df38285ef25525318539bdc81b
Date: Mon, 08 Jun 2026 16:27:10 GMT
Content-Length: 36
Content-Type: application/json; charset=utf-8
Expires: -1
}, Trailing Headers:
{
}}
Answers
-
Hi @Pete H - checking in to see if you are still seeing this error? I'm also tagging @Erik Leaver in for awareness. Thanks!
0 -
Hi @Pete H
A 500 Internal Server Error from the SKY API/constituent/v1/constituentsendpoint almost always indicates something went wrong on the server side—but in practice, it’s often triggered by a specific request condition.Assuming the call hasn't changed at all check:
Pagination Issues: This endpoint enforces paging rules.limittoo large (over allowed max, typically 5000 or lower depending on context)offsetbeyond dataset range
Throttling / Rate Limits: While typically a 429, in edge cases:
- High-volume calls can degrade into 500 responses
- Check your api usage
Data-Specific Edge Cases:
- Corrupt or incomplete records in the database
- Constituents with unusual data relationships
- Fields returning null where backend doesn’t expect it
You’ll often see:
- Works for most queries
- Fails only when hitting specific records
Debug Steps
- Retry the same call
- If intermittent it's potentially a backend timeout
- Strip down the request
- Remove all filters
- GET /constituents?limit=1
- If this works issue is likely in parameters/limits
- Test in Postman vs. app
- Helps isolate whether it’s request construction vs. backend
If it continues, please log a case with support. Please include:- Full request (headers + URL)
- Timestamp (with timezone)
- Correlation ID (from response headers)
- Whether it’s reproducible
0
Categories
- All Categories
- New YourCause Community TEST
- New SKY Community TEST
- New Grantmaking TEST Community
- New Altru Test Community
- New bbcon Community - TEST
- 12 Blackbaud Agents for Good™
- New Raiser's Edge NXT Community
- 7 Blackbaud Community Help
- 218 bbcon®
- 1.4K Blackbaud Altru®
- 409 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.2K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 16 donorCentrics®
- 361 Blackbaud eTapestry®
- 2.7K Blackbaud Financial Edge NXT®
- 680 Blackbaud Grantmaking™
- 598 Blackbaud Education Management Solutions for Higher Education
- 3.3K Blackbaud Education Management Solutions for K-12 Schools
- 952 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 85 JustGiving® from Blackbaud®
- 7K Blackbaud Raiser's Edge NXT®
- 3.9K SKY Developer
- 257 ResearchPoint™
- 123 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 247 Member Lounge (Just for Fun)
- 40 Blackbaud Community Challenges
- 37 PowerUp Challenges
- 3 (Closed) PowerUp Challenge: Grid View Batch
- 3 (Closed) PowerUp Challenge: Chat for Blackbaud AI
- 3 (Closed) PowerUp Challenge: Data Health
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Product Update Briefing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports+
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Email Marketing
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Gift Management
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Event Management
- 3 (Closed) Raiser's Edge NXT PowerUp Challenge: Home Page
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Standard Reports
- 4 (Closed) Raiser's Edge NXT PowerUp Challenge: Query
- 822 Community News
- 3.1K Jobs Board
- 57 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)

