GET
/
users
/
me
curl --request GET \
  --url https://scribe-api.puppilot.co/users/me \
  --header 'Authorization: Bearer <token>' \
  --header 'X-API-Version: <x-api-version>'
{
  "public_id": "<string>",
  "email": "jsmith@example.com",
  "name": "<string>",
  "organization_public_id": "<string>"
}

Authorizations

Authorization
string
header
required

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

Headers

X-API-Version
string
required

API versioning is required. Include the header X-API-Version with current version value in all requests.

Example:

"v1"

Response

200 - application/json
public_id
string
email
string
name
string
organization_public_id
string