Execute a deployed serverless function with a custom JSON payload. The request body is forwarded directly to your function code.
Request payload structure is completely flexible - send any valid JSON that your function expects. Your function receives the payload as the request body and can parse it however needed.
Response structure mirrors whatever your function returns. This endpoint acts as a pass-through proxy to your serverless function.
The function must be in ‘deployed’ status to be invoked. If the function is in ‘draft’ or ‘error’ status, the request will fail with 422 validation error.
Execution tracking:
invocation_id for debuggingError handling:
Function identifier
Payload to send to the function. Structure is completely flexible - send any valid JSON that your function expects. The payload will be forwarded to your function as the request body.
Function executed successfully
Function execution result. The response structure mirrors whatever your function returns. This is the raw output from your function code.