cURL
curl --request GET \ --url https://api.sandbox.immutable.com/passport-profile/v1/user/info \ --header 'Authorization: Bearer <token>'
{ "sub": "<string>", "linked_addresses": [ "<string>" ], "email": "<string>", "passport_address": "<string>" }
Get all the info for an authenticated Passport user
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Passport user's info
The user's id
The user's list of linked addresses
The user's linked address
42
The user's email address
The user's Passport address if it has been registered
Was this page helpful?