Raw VK Ads API call
raw_requestCall any VK Ads API endpoint directly by specifying path, method, query parameters, and JSON body. Use for endpoints without a dedicated tool; requires confirmWrite for write operations.
Instructions
Escape hatch to call any VK Ads API endpoint directly (e.g. path "v2/ad_plans.json", method GET). Use this for endpoints that have no dedicated tool. query becomes the query string; body is sent as JSON for POST. GET runs freely; POST and DELETE are writes and require confirmWrite=true.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON body for POST requests. | |
| path | Yes | Versioned endpoint path, e.g. "v2/ad_plans.json", "v3/statistics/banners/day.json". | |
| query | No | Query string parameters (filters, fields, pagination). | |
| method | No | HTTP method. Default GET. | |
| confirmWrite | No | Must be true for a write (POST or DELETE). |