Get user business data
AUTHORIZATIONS: access_token
Responses
200
Status 200
RESPONSE SCHEMA: application/json
| id |
number
|
| name |
string
|
| description |
string
|
| subdomain |
string
|
| website_url |
string
|
|
object
|
|
| phones |
Array of strings
|
|
object
|
|
|
object
|
OLX Production Server
https://www.olx.ro/api/partner/users-business/me
GET
/users-business/me
Response samples
200
Content type
application/json
{
"id": 1,
"name": "My company name",
"description": "My company description",
"subdomain": "mysubdomain",
"website_url": "http://website.com",
"address": {
"street": "Street",
"number": 123,
"postcode": "12-456",
"city": "City Name"
},
"phones": [
123456789
],
"logo": {
"url": "https://www.olx.ro/logo.jpg"
},
"banner": {
"url": "https://www.olx.ro/banner.jpg"
}
}
Copied to clipboard