Skip to main content
POST
/
products
/
bulk-update
Bulk Update Products
curl --request POST \
  --url https://services.leadconnectorhq.com/products/bulk-update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Version: <version>' \
  --data '
{
  "altId": "6578278e879ad2646715ba9c",
  "altType": "location",
  "type": "bulk-update-price",
  "productIds": [
    "5f8d0d55b54764421b7156c1"
  ],
  "filters": {
    "collectionIds": [
      "5f8d0d55b54764421b7156c1",
      "5f8d0d55b54764421b7156c2"
    ],
    "productType": "one-time",
    "availableInStore": true,
    "search": "blue t-shirt"
  },
  "price": {
    "type": "INCREASE_BY_AMOUNT",
    "value": 100,
    "roundToWhole": true
  },
  "compareAtPrice": {
    "type": "INCREASE_BY_AMOUNT",
    "value": 100,
    "roundToWhole": true
  },
  "availability": true,
  "collectionIds": [
    "<string>"
  ],
  "currency": "USD"
}
'
{
  "status": true,
  "message": "Successfully created"
}

Authorizations

Authorization
string
header
required

Use the Access Token generated with user type as Sub-Account (OR) Private Integration Token of Sub-Account.

Headers

Version
enum<string>
required

API Version

Available options:
2021-07-28

Body

application/json
altId
string
required

Location Id or Agency Id

Example:

"6578278e879ad2646715ba9c"

altType
enum<string>
required
Available options:
location
type
enum<string>
required

Type of bulk update operation

Available options:
bulk-update-price,
bulk-update-availability,
bulk-update-product-collection,
bulk-delete-products,
bulk-update-currency
Example:

"bulk-update-price"

productIds
string[]
required

Array of product IDs

Example:
["5f8d0d55b54764421b7156c1"]
filters
object
price
object
compareAtPrice
object
availability
boolean

New availability status

collectionIds
string[]

Array of collection IDs

currency
string

Currency code

Example:

"USD"

Response

Products updated successfully

status
boolean
required

Status of api action

Example:

true

message
string

Success message

Example:

"Successfully created"

Last modified on March 4, 2026