Skip to main content
GET
/
users
/
me
Fetching user info
curl --request GET \
  --url https://app.oneform.one/api/v1/users/me \
  --header 'Authorization: Bearer <token>'
{
  "id": "XXXX",
  "email": "user@example.com",
  "created_at": "2024-01-01T12:00:00Z",
  "updated_at": "2024-01-02T12:00:00Z"
}

Authorizations

Authorization
string
header
required

Enter your API key

Response

successful

id
string
Example:

"XXXX"

email
string
Example:

"user@example.com"

created_at
string<date-time>
Example:

"2024-01-01T12:00:00Z"

updated_at
string<date-time>
Example:

"2024-01-02T12:00:00Z"