I’m doing a PATCH
request with update:current_user_metadata
scope permissions:
curl --request PATCH
–url ‘/api/v2/users/<USER_ID>’
–header 'authorization: Bearer <ACCESS_TOKEN>
–header ‘content-type: application/json’
–data ‘{“user_metadata”: { … }}’
Which returns the changed metadata
{“user_metadata”:{ … }}
I'd prefer it to return the user profile with the scopes `["openid", "name", "email"]` (as you'd get pinging the `/userinfo` endpoint).
Is this possible? Or do I just have to make another call to `/userinfo` after updating the user metadata?