Skip to main content
GET
/
passport-profile
/
v1
/
user
/
info
Get all info for a Passport user
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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Passport user's info

sub
string
required

The user's id

linked_addresses
string[]
required

The user's list of linked addresses

The user's linked address

Maximum string length: 42
email
string

The user's email address

passport_address
string

The user's Passport address if it has been registered

Maximum string length: 42