diadoc_get_raw
Fetch data from any Diadoc API endpoint by providing its exact path, including undocumented ones. Use safe GET, HEAD, or OPTIONS requests to retrieve JSON responses.
Instructions
Read ANY endpoint by path, including ones missing from the catalog.
Target API: https://developer.kontur.ru/doc/diadoc-api.
Safe verbs only (GET, HEAD, OPTIONS). To change data use diadoc_write_raw, to delete use diadoc_delete_raw.
Args: path: full path beginning with '/', e.g. "/GetBox". method: safe verb, GET by default. host: host override; defaults to the service's default host. query: query-string parameters. body: JSON request body (rare on reads; some APIs want one). Returns JSON: {"ok": true, "status", "data"} or the error envelope.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | ||
| host | No | ||
| path | Yes | ||
| query | No | ||
| method | No | GET |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |