# POST Sync a legacy product

Deprecated. Use the current custom integration flow for new builds.

- Source URL: https://www.signcustomiser.com/help/api/post-sync-a-legacy-product/
- Markdown URL: https://www.signcustomiser.com/help/api/post-sync-a-legacy-product.md
- Group: Custom integrations
- Method: POST
- Path: /api/customisers/{customiser}/products
- Auth: Bearer token

## Path parameters

- customiser (string, required): The Sign Customiser ID tied to this product. Example: 42

## Body parameters

- product_id (string, optional): No description provided.
- cart (array, optional): No description provided.
- price_breakdown (array, optional): No description provided.
- custom_background_path (string, optional): No description provided.
- custom_background_original_path (string, optional): No description provided.
- product_type_paths (array, optional): No description provided.
- logo_original_path (string, optional): No description provided.

## Request body example

```json
{
  "product_id": "product-987654321",
  "cart": [],
  "price_breakdown": [],
  "custom_background_path": "https://cdn.example.com/bg.jpg",
  "custom_background_original_path": "https://cdn.example.com/bg-original.jpg",
  "product_type_paths": [],
  "logo_original_path": "https://cdn.example.com/logo.png"
}
```

## cURL example

```bash
curl https://web.signcustomiser.com/api/customisers/1/products \
  --request POST \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer YOUR_API_TOKEN' \
  --header 'Content-Type: application/json' \
  --data '{
  "product_id": "product-987654321",
  "cart": [],
  "price_breakdown": [],
  "custom_background_path": "https://cdn.example.com/bg.jpg",
  "custom_background_original_path": "https://cdn.example.com/bg-original.jpg",
  "product_type_paths": [],
  "logo_original_path": "https://cdn.example.com/logo.png"
}'
```

## Response examples

### 200 POST 200 example 1

```json
{
  "ok": true
}
```
