GET
/
v2
/
employees
/
info
/
me
Get current authenticated user profile
curl --request GET \
  --url https://coreapi-dev.us.bcpapers.ca/v2/employees/info/me \
  --header 'Authorization: <api-key>'
{
  "companyId": "<string>",
  "companyName": "<string>",
  "email": "<string>",
  "firstName": "<string>",
  "id": "<string>",
  "lastName": "<string>",
  "organizationId": "<string>",
  "role": "<string>",
  "roles": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

Paste the JWT token only (no "Bearer " prefix needed — the UI adds it automatically).

Response

OK

companyId
string
companyName
string
email
string
firstName
string
id
string
lastName
string
organizationId
string
role
string
roles
string[]