Website

Update user business data

Last update: 29.01.2024

Update user business data

 

AUTHORIZATIONS: access_token
REQUEST BODY SCHEMA: application/json
name
string
description
string
subdomain
string
website_url
string
object
phones
Array of strings

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
		PUT
/users-business/me

Request samples
Payload
Content type
application/json

{
"name": "string",
"description": "string",
"subdomain": "string",
"website_url": "string",
"address": {
"street": "string",
"number": "string",
"postcode": "string",
"city": "string"
},
"phones": [
"string"
]
}
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