Skip to main content
GET
/
userManagement
/
users
/
me
Get current user
curl --request GET \
  --url https://api.getcargo.io/v1/userManagement/users/me \
  --header 'Authorization: Bearer <token>'
{
  "user": {
    "uuid": "<string>",
    "email": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "picture": "<string>",
    "lastSignInAt": "<string>",
    "createdAt": "<string>",
    "updatedAt": "<string>",
    "webExtensionData": {
      "linkedin": {
        "li_at": "<string>"
      },
      "timezone": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Response

Successful response

user
object
required