Get authenticated user
Get currently Authenticated User
AUTHORIZATIONS: > access_token
Responses
200
Status 200
RESPONSE SCHEMA: application/json
| id |
integer
|
|
string
|
|
| status |
string
|
| name |
string
|
| phone |
string
|
| created_at |
string
|
| last_login_at |
string
|
| avatar |
string
|
| is_business |
boolean
|
OLX Production Server
https://www.olx.ro/api/partner/users/me
GET
/users/me
Response samples
200
Content type
application/json
Copy
{
"id": 123,
"email": "john@mail.com",
"status": "confirmed",
"name": "John",
"phone": 123123123,
"phone_login": 123123123,
"created_at": "2018-01-29 14:04:13",
"last_login_at": "2018-01-30 08:20:28",
"avatar": null,
"is_business": true
}
Copied to clipboard