find

View as Markdown
### GET /api/v1/{account_id}/projects/{project_id}/rules/{rule_id} This endpoint retrieves the details of a specific rule within a project. #### Request No request body parameters are required for this endpoint. - `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. #### Response The response for this request is a JSON object with the following schema: ``` json { "id": "", "limit": 0, "periodInSec": 0, "name": "", "action": "", "isActive": true, "condition": "" } ``` - `id` (string): The unique identifier of the rule. - `limit` (number): The limit of the rule. - `periodInSec` (number): The period in seconds for the rule. - `name` (string): The name of the rule. - `action` (string): The action associated with the rule. - `isActive` (boolean): Indicates whether the rule is active. - `condition` (string): The condition associated with the rule.

Path parameters

account_idstringRequired
project_idstringRequired
rule_idstringRequired

Response headers

Content-Lengthinteger
Connectionstring

Response

success
idstringformat: "uuid"
limitinteger
periodInSecinteger
namestring
actionstring
isActiveboolean
conditionstringformat: "style"