Execute a SpotDraft read operation
execute_read_requestRun a read operation from the SpotDraft API by specifying the operationId and parameters for path, query, or body.
Instructions
Calls any SpotDraft catalog operation classified as 'read' (GET endpoints, plus the handful of side-effect-free POST endpoints like analytics query, contract preview, and download-link generation) by operationId. Look up the operationId and its parameter shape with search_actions first. Refuses to run any operation whose catalog access is 'write' -- use execute_write_request (on the spotdraft-write server) for those instead.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body for operations that take one. Omit for GET-style operations. | |
| query | No | Query-string parameters, e.g. { page: 1, limit: 25 }. | |
| operationId | Yes | The exact operationId from search_actions, e.g. 'v2.1_public_contracts_retrieve'. | |
| path_params | No | Values for any {placeholder} segments in the operation's path, e.g. { composite_id: 'T-123' }. |