Troubleshooting

Common errors and how to fix them when integrating with Thirdfy

Common Rejection Reasons

Error / SymptomCauseFix
Invalid API keyAPI key missing, wrong, or revokedGet key from Creator Platform Identity tab. Rotate if revoked.
Action not in allowlistAction not enabled for your agentRun GET /api/v1/agent/actions?agentApiKey=YOUR_KEY to see allowed actions. Enable in Creator Platform Actions tab.
Params mismatchparams don't match action schemaCheck paramsSchema from GET /api/v1/agent/actions. Ensure required fields present and types correct.
Amount limit exceededestimatedAmountUsd exceeds policyReduce amount or request limit increase. Check policy/mandate.
Runtime not boundPackage files missingUpload skill.json, skill.md, heartbeat.md, openapi.json in Creator Platform Skills tab.
No actions returnedAgent not claimed or actions not enabledComplete onboarding. Enable actions in Creator Platform. Run GET /api/v1/agent/onboarding/me/actions.
Intent rejected (generic)Policy, mandate, or validation failedCheck: API key valid, action allowed, params correct, amount within limits. See Execute Intents.

Quick Checks

  1. API key — Valid? Not revoked? From Identity tab?
  2. Actions — Is your action in the allowlist? GET /api/v1/agent/actions?agentApiKey=YOUR_KEY
  3. Params — Match schema? Required fields present?
  4. EnvironmentTHIRDFY_API_URL and THIRDFY_AGENT_API_KEY set correctly?