curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/rules/batch-delete' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"ids": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}'
{
"deleted": 1,
"not_found": 1
}
Batch delete rules
Deletes multiple rules by ID. Returns count of successfully deleted rules. Batch delete rules. Required scope: write
POST
/
api
/
v1
/
rules
/
batch-delete
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/rules/batch-delete' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"ids": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}'
{
"deleted": 1,
"not_found": 1
}
Deletes multiple rules by ID. Returns count of successfully deleted rules.
Batch delete rules.
Required scope:
write
Request body
BatchDeleteRulesRequest
string[]
required
Rule IDs to delete
Response
BatchDeleteResponse
integer
required
integer
required
Status codes
| Code | Meaning |
|---|---|
200 | Batch deletion completed |
401 | Unauthorized — missing or invalid credentials |
403 | Forbidden — the key/token lacks the required scope |
429 | Rate limited — see Retry-After / X-RateLimit-Reset |
curl --request POST \
--url 'https://api.nsr.stateset.com/api/v1/rules/batch-delete' \
--header "X-API-Key: $STATESET_NSR_API_KEY" \
--header 'Content-Type: application/json' \
--data '{
"ids": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}'
{
"deleted": 1,
"not_found": 1
}
Last modified on August 31, 2026