Reputation: 103
From the userinfo API, GET /v2.1/accounts/{accountId}/users/{userId}/profile, this is not returning attributes like company name,title api url:
Upvotes: 0
Views: 32
Reputation: 14015
This endpoint (/profile) is only meant to get the profile image.
Either do a GET on the user directly to get basic information:
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/get/
Or do a /settings/ call to get user settings:
https://developers.docusign.com/docs/esign-rest-api/reference/users/users/getsettings/
Upvotes: 1