vrx_request
Execute arbitrary HTTP requests to the Vicarius vRx API for unsupported endpoints, with RSQL search and pagination.
Instructions
Issue an arbitrary request to the Vicarius vRx External Data API for endpoints without a dedicated tool. path is relative to the API base (e.g. '/endpoint/search'). Search uses RSQL in the q query param: == (equals), =in=(a,b) (in-list), =re='regex' (regex), > / < (compare). Pagination: size <= 500, from (offset) <= 10000; beyond 10000 use seek paging (sort + a q comparison on the last value). In read-only mode only GET is permitted.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| method | Yes | HTTP method, e.g. GET or POST | |
| path | Yes | Path relative to the API base, e.g. /endpoint/search | |
| query | No | Query params as an object | |
| body | No | JSON request body |