Integrazu Adverts

Create Advert

Create a new vehicle advert in Integrazu.

Integrazu Endpoint: POST /api/vehicles/adverts/create

Args: advert_data: Complete advert payload with vehicle specifications brand_id: Brand ID to fetch the correct Integrazu token

Returns: Created advert response with advert ID

Example payload:

{
    "brand_id": 51,
    "model_id": 2018,
    "fuel_id": 16,
    "category_id": 8,
    "color_id": 2,
    "gearbox_id": 1,
    "mileage": 35000,
    "power": 116,
    "engine_capacity": 1197,
    "first_registration_month": 3,
    "first_registration_year": 2017,
    "price": 19500,
    "registration": "42-XI-26",
    "location_id": "41",
    "features": [428, 287, 447]
}
post/api/integrazu/adverts/create

Query parameters

brand_idinteger required

Z_Brands.id for token lookup

Z_Brands.id for token lookup

Headers

x-api-tokenstring nullable

Request body

brand_idinteger required

Integrazu brand ID

model_idinteger required

Integrazu model ID

fuel_idinteger required

Integrazu fuel type ID

section_idinteger nullable

Vehicle section ID (cars, motorcycles, etc.)

category_idinteger nullable

Category ID (SUV, Sedan, etc.)

color_idinteger nullable

Color ID

gearbox_idinteger nullable

Gearbox type ID

gearbox_shift_idinteger nullable

Gearbox shift type ID

origin_idinteger nullable

Origin ID (national, imported)

capacity_idinteger nullable

Seating capacity ID

doors_idinteger nullable

Door count ID

registration_idinteger nullable

Registration type ID

class_idinteger nullable

Vehicle class ID

condition_idinteger nullable

Vehicle condition ID

traction_idinteger nullable

Traction type ID (FWD, RWD, AWD)

version_idinteger nullable

Specific version/trim ID

registrationstring required

License plate / Registration number

vinstring nullable

Vehicle Identification Number

version_designationstring nullable

Version name/designation

mileageinteger required

Mileage in kilometers

powerinteger required

Engine power in HP

engine_capacityinteger required

Engine capacity in cc

first_registration_yearinteger required

Year of first registration

first_registration_monthinteger required

Month of first registration (1-12)

pricenumber required

Sale price

vendors_warranty_monthsinteger nullable

Vendor warranty in months

inspection_valid_untilstring nullable

Inspection valid until date (YYYY-MM-DD)

maker_warranty_valid_until_datestring nullable

Manufacturer warranty end date

maker_warranty_valid_until_kmstring nullable

Manufacturer warranty km limit

co2_emissionsstring nullable

CO2 emissions (g/km)

iucstring nullable

Annual road tax (IUC)

max_fuel_rangestring nullable

Maximum fuel range in km

urban_consumptionstring nullable

Urban fuel consumption (L/100km)

extra_urban_consumptionstring nullable

Extra-urban consumption

combined_consumptionstring nullable

Combined fuel consumption

max_speedstring nullable

Maximum speed (km/h)

featuresinteger[]

List of feature IDs

location_idstring required

Dealership location ID

descriptionstring nullable

Vehicle description text

videostring nullable

Video URL

Example request

{
  "accept_funding": 1,
  "brand_id": 12,
  "category_id": 5,
  "color_id": 10,
  "engine_capacity": 1197,
  "features": [
    1,
    5,
    12,
    20
  ],
  "first_registration_month": 6,
  "first_registration_year": 2017,
  "fuel_id": 2,
  "gearbox_id": 1,
  "location_id": "1",
  "metallic": 1,
  "mileage": 50000,
  "model_id": 345,
  "power": 116,
  "price": 25000,
  "registration": "AA-11-BB"
}

Response

Successful Response

object required

Changes

No recorded changes to this endpoint across all 1 revision of this API.