Get User Info
Get User's Account Info
GET
https://app.beamlabs.io/api/oauth/v1/endpoints/user-info
Retrive metadata for a user (eg. first name, last name, email, etc).
Headers
Name
Type
Description
Accept
string
Always set to application/json
Content-Type
string
Always set to application/json
Authorization
string
Set to Bearer <ACCESS_TOKEN>
Accept-Charset
string
Always set to utf-8
Accept-Encoding
string
Always set to gzip
{
"success": true,
"timestamp": ,
"data": {
"id": "69668e34-2b60-49aa-b42a-7e01ebc0cb58",
"first_name": "John",
"last_name": "Doe"
}
}
Last updated