Endpoints
For some operations, you can use specific endpoints provided by the Rulesets API for managing phase entry point rulesets. These endpoints include the phase name in the endpoint instead of the ruleset ID.
For example, instead of using the following endpoint:
You can use the following endpoint:
To invoke a Rulesets API operation, append the endpoint to the Cloudflare API base URL:
For authentication instructions, refer to Getting Started: Requests in the Cloudflare API documentation.
For help with endpoints and pagination, refer to Getting Started: Endpoints.
The Cloudflare Rulesets API supports the operations outlined below. Visit the associated links for API endpoints and examples.
Operation | Method | Notes |
---|---|---|
List existing rulesets | GET | Returns the list of existing rulesets at the account level or at the zone level. |
View a specific ruleset | GET | Returns the properties of the most recent version of a specific ruleset. |
List all versions of a ruleset | GET | Returns a list of all the versions of a ruleset. |
View a specific version of a ruleset | GET | Returns the configuration of a specific version of a ruleset, including its rules. |
List rules in a managed ruleset with a specific tag | GET | Returns a list of all the rules in a managed ruleset with a specific tag. |
Operation | Verb | Notes |
---|---|---|
Create ruleset | POST | Creates a new ruleset or a new phase entry point. |
Operation | Verb | Notes |
---|---|---|
Update or deploy a ruleset | PUT | Updates the basic properties of a ruleset and the list of rules in the ruleset. Allows you to configure the execution of managed rulesets. |
Add rule to ruleset | POST | Adds a single rule to an existing ruleset. Allows you to add a single rule without having to include all the existing ruleset rules in the request. |
Update a rule in a ruleset | PATCH | Updates the definition of a single rule within a ruleset. Allows you to change the order of a rule in a ruleset. |
Delete a rule in a ruleset | DELETE | Deletes a single rule in a ruleset. |
Operation | Verb | Notes |
---|---|---|
Delete ruleset | DELETE | Deletes all the versions of a ruleset. |
Delete ruleset version | DELETE | Deletes a specific version of a ruleset. |