Automate Domo Profile Image Imports

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.

1
1 votes

Comments

  • brycec
    brycec Contributor

    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>" }

    Was this comment helpful? Click Agree or Like below.
    Did this comment solve your problem? Accept it as the solution!