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

Body

application/json
AppKey
string
required

Your store's unique access key

SecretKey
string
required

Your store's secret key

Tokens
string[]
required

Array of delta tokens to check

Response

Status of each requested token

Token
string

The delta token

Status
enum<integer>

Processing status:

  • 0 - Pending (not yet processed)
  • 1 - Success (processed successfully)
  • 2 - Error (processing failed)
Available options:
0,
1,
2
Reason
string

Error reason (only present when Status is 2)