Skip to content

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

HeaderRequiredDescription
X-Api-Key or X_API_KEYyesAPI key.
Content-Typeyesapplication/json.

Request body

FieldTypeRequiredDescription
project_idintegeryesProject identifier.
rule_idintegeryesRule 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

FieldTypeDescription
successbooleanSuccess flag.
messagestringOptional message. Empty string by default.

Notes

  • The endpoint always returns the generic success payload after the project permission check branch completes.

Doc rev.1.12.3 2026.05.08