When an authenticated user calls my API I get their user info via the /userinfo endpoint, passing the access token they used in their API call.
This endpoint doesn’t return all the fields from the user profile object, namely I want to get the following:
-
email
(already provided) user_id
-
created_at
(not returned by /userinfo, but listed in the User Profile Structure docs)
Any ideas how I can get these extra attributes from /userinfo without having to make more than 1 API call every time a user makes a request?
Thanks