GET
/
2025-04
/
rules
List all rules
curl --request GET \
  --url https://pullrule.com/api/2025-04/rules \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "is_enabled": true,
      "logic": [
        {
          "expression": "<string>",
          "effect": {
            "action": "<string>",
            "value": "<string>"
          }
        }
      ],
      "created_at": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Array of Rule

data
Rule · object[]
required