Is it possible to retrieve faculty/staff profile photo?
I'm not seeing the profile photo referenced anywhere in the schools API, is there anywhere to get the profile photo from the contact card/user (or some way to do it via another API)?
Comments
-
@Typecode LLC - The photo file names are another example of data that is available in an Advanced List but not directly through the API. Start with the User Base object, then add the User Photo object. (You may want to also include the User Roles object so that you can filter the list.)
You will get two file names for each user who has a photo - one for a large image and one for a small image.
To get the full URL of the image, you will have to get the school's unique URL for images. (I went to the contact card for a user, pointed at the photo, right-clicked, and chose Save Image Location.) Use the URL path and the file name to get the image you want (large or small) for each user.
1 -
@Brian Gray thank you, I need to dive in to Lists as I actually don't know what they are but sounds useful!
0 -
0
-
@Typecode LLC
There are urls for profile pics in the Users by ID endpoint…
"prefix": "Mr.",
"suffix": "III",
"profile_pictures": {
"large_filename_url": "//some.cdn.com/pathTo/largeFilename",
"thumb_filename_url": "//some.cdn.com/pathTo/thumbFilename"
}1 -
The endpoint that @Stephen Boyle mentioned does have the info you're looking for. The trade-off is that with that endpoint, you can get the info for only one user at a time. If you need only one user's image and you already have the userID, that endpoint is the better way to go. If you need photos for all users in a role, an Advanced List will probably be faster.
2 -
The user extended endpoints now return the profile photo url, including Users extended by role(s).
"profile_photo": {
"photo_url": "",
"thumbnail_url": ""
},1 -
@Stephen Boyle - That's good news. Thanks for adding those fields.
bkg
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®
- 656 Blackbaud Grantmaking™
- 577 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)


