QueryPurgeLimit

Update time: 2026-07-28 19:05:15

Applicable Products

Content MGMT

API Description

query purge daily limit

Call frequency

Single user trigger frequency: 300/5min

Response parameter(s)

Body Params

NameDescription
urlUpperInteger
url purge daily limit
urlRemainInteger
url purge remain
dirUpperInteger
dir purge daily limit
dirRemainInteger
dir purge remain
regexUpperInteger
regex purge daily limit
regexRemainInteger
regex purge remain
tagUpperInteger
tag purge daily limit
tagRemainInteger
tag purge remain
codeInteger
error code
messageString
message
supplierString
supplier

Error code

Error code(code)Description(message)HTTP statusSemantic
0success200success
1system error200system error

Example

JSON
JSON
Request example
Copy Copy success
#!/bin/bash
username="username"
apiKey='apikey'
date=`env LANG="en_US.UTF-8" date -u "+%a, %d %b %Y %H:%M:%S GMT"`
password=`echo -en "$date" | openssl dgst -sha1 -hmac $apiKey -binary | openssl enc -base64`
curl -i --url "https://api.atomile.com/ccm/purge/limit" \
-X "POST" \
-u "$username:$password" \
-H "Date:$date" \
-H "Content-Type: application/json" \
-d ''
Response example
Copy Copy success
{
	"supplier":"wangsu",
	"code":0,
	"message":"success",
	"urlUpper":50000001,
	"urlRemain":50000001,
	"dirUpper":500,
	"dirRemain":500,
	"regexUpper":400,
	"regexRemain":400,
	"tagUpper":2000,
	"tagRemain":2000
	}