Skip to main content
POST
/
v1
/
integrations
/
connections
/
{connection_id}
/
test-invoke
Dashboard test surface: invoke a tool by slug (VENDOR_API)
curl --request POST \
  --url https://api-sandbox.featherhq.com/v1/integrations/connections/{connection_id}/test-invoke \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "slug": "<string>",
  "input": {},
  "response_field_map": {}
}
'
{
  "result": {},
  "narrowed": null
}

Authorizations

x-api-key
string
header
required

Path Parameters

connection_id
string<uuid>
required

Body

application/json

Body for the dashboard VENDOR_API test surface (Step 10).

Lets an operator fire a real invoke_tool_by_slug from the Integrations page to confirm the backend action path end-to-end. input matches the resolved tool's input_schema.

slug
string
required
input
Input · object
response_field_map
Response Field Map · object

Response

Successful Response

Raw vendor result echoed back to the dashboard test surface.

narrowed previews the agent-facing result after applying the effective field map (request override → saved field map); None when no field map applies (ENG-631).

result
Result · object
required
narrowed
unknown