Ugrás a fő tartalomhoz

Bejövő Webhook futtatása

POST/api/v1/telephony/inbound/{workflow_id}

[LEGACY] Per-workflow inbound webhook. Superseded by ``POST /inbound/run``, which resolves the workflow from the called number's ``inbound_workflow_id`` and lets a single webhook URL serve every workflow in the org. New integrations should point their provider at ``/inbound/run``; this route is kept only for existing provider configurations that still encode ``workflow_id`` in the URL.

cURL példa

curl -X POST \
  'https://app.intracord.hu/api/v1/telephony/inbound/{workflow_id}' \
  -H "X-API-Key: $INTRACORD_API_KEY"

Paraméterek

NévHelyTípusLeírás
workflow_idkötelezőpathinteger

Válaszok

200Successful Response
application/json
Séma megtekintése
{}
404Not found
422Validation Error
application/json
Séma megtekintése
{
  "properties": {
    "detail": {
      "items": {
        "$ref": "#/components/schemas/ValidationError"
      },
      "type": "array",
      "title": "Detail"
    }
  },
  "type": "object",
  "title": "HTTPValidationError"
}