Skip to main content
POST
/
api
/
productfeedstatus
Check product feed processing status
curl --request POST \
  --url https://api-eu-w-1.pureclarity.net/api/productfeedstatus \
  --header 'Content-Type: application/json' \
  --data '
{
  "AppKey": "your-access-key",
  "Tokens": [
    "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  ]
}
'
[
  {
    "Token": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "Status": "Complete"
  }
]

Body

application/json
AppKey
string
required

Your store's unique access key

Tokens
string[]
required

Array of feed tokens to check

Response

Status of each requested token

Token
string

The feed token

Status
string

Processing status (e.g. "Complete", "Processing", "Error")

Error
string

Error message (only present when status indicates an error)