User API โ
Get Me โ
prolog
GET API_BASE/users/me
Authorization Required โ
OAuth | APIKey |
---|---|
Yes | Yes |
Response โ
json
{
"data": UserObject,
"ts": 1723923923
}
Get User โ
prolog
GET API_BASE/users/:user_id
Parameters โ
Parameter | Type | Description |
---|---|---|
user_id | int | The ID of the user |
Response โ
json
{
"data": UserObject,
"ts": 1723923923
}
Query Users โ
prolog
GET API_BASE/users/query
Authorization Required โ
OAuth | APIKey |
---|---|
Yes | Yes |
Query Parameters โ
Parameter | Type | Description |
---|---|---|
email | string | The email of the user |
Response โ
json
{
"data": [UserObject],
"ts": 1723923923
}