GuidePlatformv1
Invoke
A catch-all for non-CRUD patterns (e.g. sending an email, geocoding, payment auth).
For calls that compute or generate data rather than create, read, update, or delete records. You send input parameters; the response payload — text, generated content, computed values — is the point.
Common usage
- AI inference and generation — Anthropic Messages, OpenAI Chat Completions, image generation, code execution sandboxes.
- Transforms — geocoders, translators, summarizers, validators, currency converters.
- Operations whose response fields the automation needs downstream — payment authorization codes, computed fees, validation results.
What the skill handles
- Endpoint resolution from the operation catalog.
- Multi-field input mapping into a JSON request body.
- Multi-field output parsing — every field the API returns becomes an output the next step can use.
- Error surfacing with the response body attached for diagnosis.
Related docs
Last updated May 4, 2026