FruxonDocs
ApiFruxon channel

Resolves the input the session agent would receive if the trigger fired now.

Read-only preview backing the debug console's editable input field: runs the trigger's binding mappings through the same resolver a real fire uses (literal, payload-path, template) against the session's agent, and returns the resolved parameter dictionary — without enqueuing anything. The operator edits these and passes them back as `parameterOverrides` on the next `triggerFires` call. An optional sample payload (IntegrationEvent only) makes payload-path / template fields reflect that event body, so the console can re-resolve live as the operator edits it — POST (not GET) so the payload rides the body. Sandbox sessions only; only a binding selecting the session's agent resolves.

POST
/v1/tenants/{tenant}/fruxon/sessions/{session}/triggers/{trigger}/resolvedInput
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

session*string

The session id returned by open.

trigger*string

The trigger whose resolved input to preview.

Formatuuid
tenant*string

The tenant identifier

Optional sample payload to resolve against.

samplePayload?|null

Optional synthesized event body for IntegrationEvent triggers — nests under TriggerFirePayload.Body["payload"], same as the fire path. Null (or omitted) resolves with no payload, so payload-path fields land empty — the correct preview for Schedule triggers and the initial state.

[key: string]?never

Response Body

curl -X POST "https://api.fruxon.com/v1/tenants/string/fruxon/sessions/string/triggers/497f6eca-6276-4993-bfeb-53cbbbba6f08/resolvedInput" \  -H "Content-Type: application/json" \  -d '{}'
{
  "parameters": {}
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}
Empty
Empty
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}