Error 500
Hi,
For the last hour I've been experiencing a 500 "The service is currently unavailable, please try again." response when calling https://api.sky.blackbaud.com/school/v1/users/{user_id}/relationships. This is my first time calling this method and my first time encountering this error. All other methods that I've tried so far have been working as expected.
This sounds like a Blackbaud issue to me, but I'm open to suggestions! Any help would be much appreciated.
Python 3 code:
For the last hour I've been experiencing a 500 "The service is currently unavailable, please try again." response when calling https://api.sky.blackbaud.com/school/v1/users/{user_id}/relationships. This is my first time calling this method and my first time encountering this error. All other methods that I've tried so far have been working as expected.
This sounds like a Blackbaud issue to me, but I'm open to suggestions! Any help would be much appreciated.
Python 3 code:
def request_parser(request, params=""):
params=urllib.parse.urlencode(params)
try:
conn = http.client.HTTPSConnection('api.sky.blackbaud.com')
conn.request("GET", "/school/v1/%s?%s" % (request, params), "{body}", creds.headers)
response = conn.getresponse()
data = response.read()
conn.close()
except Exception as e:
print("[Errno {0}] {1}".format(e.errno, e.strerror))
return data
def get_user_relationships(uid):
params={
}
request="users/%s/relationships" % (uid)
data=request_parser(request, params)
return data
data=get_user_relationships(uid)
string=string.decode()
string=json.loads(string)
print(json.dumps(string, indent=4, sort_keys=True))
API response:
"errors": [
{
"error_code": 500,
"error_name": "Server Error",
"raw_message": "The service is currently unavailable, please try again."
}
]
0
Comments
-
After nearly an hour on with blackbaud support and after having been given Environment Admin access, the issue persisted. Once I was made "Platform Manager" I was able to access the API method. Hopefully this helps someone else!0
-
I am seeing the same thing. It is an intermittent problem. I saw it before and during the BB-ID problem, then it was resolved, then it returned yesterday. It's working at the moment (as I knock wood and cross my fingers...)
I submitted a case (018307959) a couple of days ago. If you're still seeing the problem, you should report it too.
It's also helpful to test it at the API endpoint reference page (Try It). That eliminates any potential problem with your own code.
0
Categories
- All Categories
- 6 Blackbaud Community Help
- 211 bbcon®
- 1.4K Blackbaud Altru®
- 402 Blackbaud Award Management™ and Blackbaud Stewardship Management™
- 1.1K Blackbaud CRM™ and Blackbaud Internet Solutions™
- 15 donorCentrics®
- 360 Blackbaud eTapestry®
- 2.6K Blackbaud Financial Edge NXT®
- 655 Blackbaud Grantmaking™
- 576 Blackbaud Education Management Solutions for Higher Education
- 3.2K Blackbaud Education Management Solutions for K-12 Schools
- 941 Blackbaud Luminate Online® and Blackbaud TeamRaiser®
- 84 JustGiving® from Blackbaud®
- 6.7K Blackbaud Raiser's Edge NXT®
- 3.7K SKY Developer
- 248 ResearchPoint™
- 120 Blackbaud Tuition Management™
- 165 Organizational Best Practices
- 240 Member Lounge (Just for Fun)
- 34 Blackbaud Community Challenges
- 37 PowerUp Challenges
- 3 (Open) 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
- 796 Community News
- 3K Jobs Board
- 54 Blackbaud SKY® Reporting Announcements
- 47 Blackbaud CRM Higher Ed Product Advisory Group (HE PAG)
- 19 Blackbaud CRM Product Advisory Group (BBCRM PAG)
