rock_get
Make read-only GET requests to any Rock REST API endpoint with OData v3 parameters. Use for data access not covered by dedicated tools.
Instructions
Arbitrary READ-ONLY GET against the Rock REST API for anything the dedicated tools don't cover. Path must start with /api/ and supports OData v3 options ($filter, $select, $expand, $top, $orderby). ALWAYS use $select and $top; raw Rock entities are large. Nav-property filters (e.g. Occurrence/GroupId) are unreliable in this build; filter on FK columns directly. The REST key's Rock permissions are the security boundary; denied controllers return 401/403.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| path | Yes | Full API path with query string, e.g. /api/Campuses?$filter=IsActive eq true&$select=Id,Name |