POST
/
v2
/
push
curl --request POST \
  --url https://mango.sievedata.com/v2/push \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "function": "sieve/retalker",
  "id": "43d7add5-61cf-44ad-aac8-c5d14c642bb4",
  "inputs": {
    "input1": "a",
    "input2": "b"
  },
  "webhooks": [
    {
      "type": "job.start",
      "url": "<string>"
    }
  ],
  "env": {
    "OPENAI_API_KEY": "..."
  }
}'
{
  "id": "<string>",
  "run_id": "<string>",
  "stream_output": true,
  "status": "<string>",
  "organization_id": "<string>",
  "model_id": "<string>",
  "workflow_id": "<string>"
}

Authorizations

X-API-Key
string
header
required

The Sieve API key to authenticate with.

Body

application/json

Input schema for /v2/push.

Response

200
application/json
Successful Response

Output schema for /v2/push.