Batch create or update variant prices
# Batch create or update variant prices
Creates or updates multiple prices for a product variant across different markets within a store group in a single request.
PUT
/api/v1/{team_slug}/{app_slug}/products/{product_id}/variants/{variant_id}/prices-batch
PurposeCreates or updates multiple prices for a product variant across different markets within a store group in a single request.
Required inputsvariant_id path app_slug path team_slug path
Primary response200 ยท List of created or updated prices with store group and market details
Operation keymanagement-api:PUT:/api/v1/{team_slug}/{app_slug}/products/{product_id}/variants/{variant_id}/prices-batch
## API ownership
- API family: Management API
- Best for: Trusted back-office workflows that create, update, organize, or delete merchant-owned data.
- Do not use from: Browser-only storefront code or public clients.
- Guide route: [/apis/management/latest](/apis/management/latest)
The OpenAPI contract defines the method, path, parameters, request body, and responses for this operation.
## Operation
- Method: `PUT`
- Path: `/api/v1/{team_slug}/{app_slug}/products/{product_id}/variants/{variant_id}/prices-batch`
- Summary: Batch create or update variant prices
- Description: Creates or updates multiple prices for a product variant across different markets within a store group in a single request.
- OpenAPI contract:
management-api
- Operation ID: Not documented in the OpenAPI contract.
- Stable operation key: `management-api:PUT:/api/v1/{team_slug}/{app_slug}/products/{product_id}/variants/{variant_id}/prices-batch`
Operation key uses API family, method, and path because this OpenAPI contract does not publish an operation ID.
## Parameters
| Name | In | Required | Type | Description |
| --- | --- | --- | --- | --- |
| variant_id | path | Yes | string | Variant ID |
| app_slug | path | Yes | string | App slug |
| team_slug | path | Yes | string | Team slug |
## Request body
- Required: Yes
- Description: Batch price data with store group and array of market prices
- Content: application/json (object)
### Input Price Batch
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `dont_update_price_if_on_sale` | boolean | No | Used to prevent overwriting price if on_sale. |
| `prices` | object[] | Yes | - |
| `store_group_slug` | string | Yes | - |
#### Batch Price
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `amount_cents_with_tax` | integer | No | min: 0 |
| `market_slug` | string | Yes | - |
| `on_sale` | boolean | No | - |
| `reference_price_with_tax` | integer | No | min: 0 |
| `sale_end_timestamp` | string | No | - |
| `sale_price_with_tax` | integer | No | min: 0 |
| `sale_start_timestamp` | string | No | - |
| `status` | enum("active", "inactive", "draft") | Yes | - |
**Generated example (synthetic):**
```json
{
"dont_update_price_if_on_sale": false,
"prices": [
{
"amount_cents_with_tax": 0,
"market_slug": "string",
"on_sale": false,
"reference_price_with_tax": 0,
"sale_end_timestamp": "string",
"sale_price_with_tax": 0,
"sale_start_timestamp": "string",
"status": "active"
}
],
"store_group_slug": "string"
}
```
## Responses
| Status | Description | Content |
| --- | --- | --- |
| 200 | List of created or updated prices with store group and market details | application/json (object) |
| 400 | Invalid request (e.g. bad UUID, validation error) | application/json (object) |
| 401 | Unauthorized access | application/json (object) |
| 500 | Internal server error | application/json (object) |
### 200 - object
#### Product Price List
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `data` | object[] | No | - |
| `details` | string[] | No | Additional contextual information about the response. Used to provide supplementary details beyond the main data payload, such as validation warnings or processing notes |
| `success` | boolean | No | - |
##### Product Variant Price With Store Group
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `amount_cents_with_tax` | integer | No | - |
| `created_at` | string | No | - |
| `id` | string | No | - |
| `market` | object | No | - |
| `on_sale` | boolean | No | - |
| `reference_price_with_tax` | integer | No | - |
| `sale_end_timestamp` | string | No | - |
| `sale_price_with_tax` | integer | No | - |
| `sale_start_timestamp` | string | No | - |
| `status` | enum("active", "inactive", "draft") | No | - |
| `store_group` | object | No | - |
| `updated_at` | string | No | - |
##### Market
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `active` | boolean | No | - |
| `country_codes` | string[] | No | - |
| `created_at` | string | No | - |
| `currency_code` | string | No | - |
| `id` | string | No | - |
| `locale` | string | No | - |
| `name` | string | No | - |
| `slug` | string | No | - |
| `updated_at` | string | No | - |
##### Store Group
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `country_of_sale` | string | No | - |
| `created_at` | string | No | - |
| `description` | string | No | - |
| `id` | string | No | - |
| `name` | string | No | - |
| `slug` | string | No | - |
| `store_type` | string | No | - |
| `updated_at` | string | No | - |
Generated example (synthetic)
```json
{
"data": [
{
"amount_cents_with_tax": 0,
"created_at": "string",
"id": "string",
"market": {
"active": false,
"country_codes": [],
"created_at": "string",
"currency_code": "string",
"id": "string",
"locale": "string",
"name": "string",
"slug": "string",
"updated_at": "string"
},
"on_sale": false,
"reference_price_with_tax": 0,
"sale_end_timestamp": "string",
"sale_price_with_tax": 0,
"sale_start_timestamp": "string",
"status": "active",
"store_group": {
"country_of_sale": "string",
"created_at": "string",
"description": "string",
"id": "string",
"name": "string",
"slug": "string",
"store_type": "string",
"updated_at": "string"
},
"updated_at": "string"
}
],
"details": [
"string"
],
"success": false
}
```
### 400 - object
#### Error Message
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `details` | string[] | No | - |
| `message` | string | No | - |
| `success` | boolean | No | - |
**Generated example (synthetic):**
```json
{
"details": [
"string"
],
"message": "string",
"success": false
}
```
### 401 - object
#### Error Message
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `details` | string[] | No | - |
| `message` | string | No | - |
| `success` | boolean | No | - |
**Generated example (synthetic):**
```json
{
"details": [
"string"
],
"message": "string",
"success": false
}
```
### 500 - object
#### Error Message
| Property | Type | Required | Details |
| --- | --- | --- | --- |
| `details` | string[] | No | - |
| `message` | string | No | - |
| `success` | boolean | No | - |
**Generated example (synthetic):**
```json
{
"details": [
"string"
],
"message": "string",
"success": false
}
```
## Contract identity
Use these fields to confirm you are implementing the intended endpoint contract.
- API family: Management API
- Method: `PUT`
- Path: `/api/v1/{team_slug}/{app_slug}/products/{product_id}/variants/{variant_id}/prices-batch`
- Operation ID: Not documented in the OpenAPI contract.
- Stable operation key: `management-api:PUT:/api/v1/{team_slug}/{app_slug}/products/{product_id}/variants/{variant_id}/prices-batch`
- OpenAPI tag: Variants
- OpenAPI summary: Batch create or update variant prices