Skip to main content
POST
/
api
/
delta
Submit a product delta update
curl --request POST \
  --url https://api-eu-w-1.pureclarity.net/api/delta \
  --header 'Content-Type: application/json' \
  --data '
{
  "AppKey": "your-access-key",
  "SecretKey": "your-secret-key",
  "Products": [
    {
      "Id": "PROD-001",
      "Title": "Running Shoes - Updated",
      "Prices": [
        "59.99 GBP",
        "74.99 USD"
      ],
      "Categories": [
        "shoes",
        "running"
      ],
      "Link": "/products/running-shoes",
      "Image": "https://cdn.example.com/shoes.jpg"
    }
  ],
  "DeleteProducts": [
    "PROD-OLD-001"
  ]
}
'
{
  "Token": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}

Body

application/json
AppKey
string
required

Your store's unique access key

SecretKey
string
required

Your store's secret key

Products
object[]

Products to add or update

DeleteProducts
string[]

Product IDs to remove

SetCategoryOnProducts
object[]

Category assignments to add

RemoveCategoryFromProducts
object[]

Category assignments to remove

AccountPrices
object[]

Account-specific prices to add or update

DeleteAccountPrices
object[]

Account-specific prices to remove

Users
object[]

User records to add or update

Response

Delta accepted for processing

Token
string

Processing token for status tracking