GET
/
api
/
v2
/
user
curl --request GET \
  --url https://cloud.volttime.com/api/v2/user \
  --header 'Authorization: Bearer <token>'
{
  "deprecation": "user.id is deprecated. Use user.uuid instead.",
  "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
  "id": 10,
  "name": "Miss Pearl Hauck",
  "email": "leo34@example.net",
  "intercom": {
    "hmac_android": "15aa393761072a583e99ebc7669b14a21196c58b14217bfaa454fb8128619a0f",
    "hmac_ios": "15aa393761072a583e99ebc7669b14a21196c58b14217bfaa454fb8128619a0f",
    "hmac_web": "15aa393761072a583e99ebc7669b14a21196c58b14217bfaa454fb8128619a0f"
  },
  "created_at": "2025-03-31T12:18:52.000000Z",
  "updated_at": "2025-03-31T12:18:52.000000Z"
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Response

200 - application/json
deprecation
string
Example:

"user.id is deprecated. Use user.uuid instead."

uuid
string
Example:

"bfc53181-d647-36b2-9080-f9c2b76006f4"

id
integer
Example:

10

name
string
Example:

"Miss Pearl Hauck"

email
string
Example:

"leo34@example.net"

intercom
object
created_at
string
Example:

"2025-03-31T12:18:52.000000Z"

updated_at
string
Example:

"2025-03-31T12:18:52.000000Z"

Was this page helpful?