Inngest · Example Payload

Inngest Invoke Function Example

AI AgentsAgentKitBackground JobsConnectCron JobsDev ServerDurable EndpointsDurable ExecutionEvent-DrivenInsightsOrchestrationQueuesRealtimeSelf-HostingServerlessSignalsStep FunctionsWebhooksWorkflows

Inngest Invoke Function Example is an example object payload from Inngest, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "POST",
    "url": "https://api.inngest.com/v2/apps/app_main/functions/fn_research_agent/invoke",
    "headers": {
      "Authorization": "Bearer signkey-prod-***",
      "Content-Type": "application/json"
    },
    "body": {
      "data": {
        "topic": "durable execution",
        "depth": 3
      },
      "async": true
    }
  },
  "response": {
    "status": 200,
    "body": {
      "run_id": "01HZXAY3QKQTNS4Q3K8R2HZE9C",
      "status": "QUEUED"
    }
  }
}