Skip to main content
GET
/
api
/
v2
/
me
Get My User Information
curl --request GET \
  --url https://your-sift-api-url.com/api/v2/me \
  --header 'Authorization: Bearer <token>'
{
  "userId": "<string>",
  "userEmail": "<string>",
  "organizations": [
    {
      "organizationId": "<string>",
      "organizationName": "<string>"
    }
  ],
  "isAdmin": true,
  "permissions": {
    "organizationPermissionResources": {}
  },
  "createdDate": "2023-11-07T05:31:56Z",
  "hashBasedMessageAuthenticationCode": "<string>"
}

Authorizations

Authorization
string
header
required

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

Response

A successful response.

userId
string
required
userEmail
string
required
organizations
object[]
required
isAdmin
boolean
required
permissions
object
required
createdDate
string<date-time>
required
hashBasedMessageAuthenticationCode
string