cURL
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>" }
Retrieve a user’s information.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
A successful response.
Show child attributes
Was this page helpful?