To leverage Domo for our company org chart, it would be ideal to automatically be able to import pictures into each person's profile picture, either via a dataset (link to image) or a bulk import via folder.
This is possible via the Product APIs if you are looking for a workaround. Authentication to the Product APIs documentation: https://developer.domo.com/portal/8ba9aedad3679-ap-is#product-apis
POST https://<instance>.domo.com/api/content/v1/avatar/bulk
Body:
{ "isOpen": false, "transactionId": "<random_guid>", "entityIds": [ "<user_id>" ], "entityType": "USER", "base64Image": "<base64_data>" }