Action Asset Library
A lightweight way to reuse preconfigured Actions (method, path, headers, mappings) instead of rebuilding from scratch.
When to Use
- Common integration pattern you have used before
- Faster onboarding for a teammate
- Need a safe starting point you will lightly tweak (URL, auth, field names)
Avoid it if the new Action is radically different—manual creation may be clearer.
Import Steps
- Click Add from Asset Library on the Actions tab.
- Browse or search for a relevant Action template.
- Select it to preview description, method, and output fields.
- Click Import (or similar) to clone into your Topic context.
- Adjust: endpoint base URL, authentication (swap to your secret), and any parameter / response mappings.
- Provide Example Input JSON if missing.
- Test & verify outputs populate.
- Save.
Minimal Post‑Import Checklist
- Auth header updated to your secret reference
- URL / path placeholders correct (
{id}
etc.) - Unused query/body parameters removed
- Output schema only contains fields you actually use
- Test run passes (status + mapped fields)
Notes / Good Hygiene
- Rename generic labels (e.g.,
GetData
) to something explicit (Get Product Details
). - Strip fields you do not consume to limit maintenance.
- Treat imported examples as hints—validate against real API docs.
Next: Return to the Action guide to continue with chat flow validation.