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
}
]
}Returns a list of the rules your account has access to. The rules are returned sorted by creation date, with the most recent rule appearing first.
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
}
]
}