---
title: "Add Images To Advert"
method: POST
path: "/api/integrazu/adverts/images/{advert_id}"
tags: ["Integrazu Adverts"]
---

# Add Images To Advert

`POST /api/integrazu/adverts/images/{advert_id}`

Add images to an advert.

**Integrazu Endpoint:** `POST /api/vehicles/adverts/images/{id}`

Args:
    advert_id: Integrazu advert ID
    body: List of image URLs to upload
    brand_id: Brand ID to fetch the correct Integrazu token

Returns:
    Image upload response

Example payload:
```json
{
    "images": [
        "https://example.com/image1.jpg",
        "https://example.com/image2.jpg"
    ]
}
```

## Path parameters

- `advert_id` integer, required

## Query parameters

- `brand_id` integer, required — Z_Brands.id for token lookup

## Headers

- `x-api-token` string, nullable

## Request body

- IntegrazuImageUploadRequest — Request body for uploading images to an advert.
  - `images` string[], required — List of image URLs

## Response `200`

Successful Response

- object

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.dev/multigest/apis/multigest-protected-api.md) · [All operations](https://skmtc.dev/multigest/apis/multigest-protected-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/multigest/multigest-protected-api/revisions/4b44eb76b3ee/schema)
