set isActive
### Update Rule Active Status
This endpoint allows the user to update the active status of a specific rule within a project. The HTTP PATCH request should be made to `{base_url}/api/v1/{account_id}/projects/{project_id}/rules/{rule_id}/active`.
#### Request
- `base_url` (string): The base URL of the API.
- `account_id` (string): The unique identifier of the account.
- `project_id` (string): The unique identifier of the project.
- `rule_id` (string): The unique identifier of the rule.
#### Request Body
- isActive: (boolean) Indicates the new active status of the rule.
#### Response
The response will include the updated active status of the rule.
Example Response:
``` json
{
"active": true
}
```
Path parameters
account_id
project_id
rule_id
Request
This endpoint expects an object.
isActive
Response headers
Content-Length
Connection
Response
success
Errors
500
Internal Server Error

