Appearance
tag/deleterule
Deletes a tagging rule.
Method and path
POST /tag/deleterule
Authentication
Authentication is required. See Authentication.
Permissions
Accessible to tier 1, 2, and 3 users.
Request headers
| Header | Required | Description |
|---|---|---|
X-Api-Key or X_API_KEY | yes | API key. |
Content-Type | yes | application/json. |
Request body
| Field | Type | Required | Description |
|---|---|---|---|
project_id | integer | yes | Project identifier. |
rule_id | integer | yes | Rule identifier. |
Example request
bash
curl -X POST "$SIGNAL_API_BASE_URL/tag/deleterule" \
-H "X-Api-Key: $SIGNAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{"project_id": 123, "rule_id": 789}'json
{
"project_id": 123,
"rule_id": 789
}Example response
json
{
"success": true,
"message": ""
}Response fields
| Field | Type | Description |
|---|---|---|
success | boolean | Success flag. |
message | string | Optional message. Empty string by default. |
Notes
- The endpoint always returns the generic success payload after the project permission check branch completes.