Skip to main content
POST
/
api
/
post-call-webhooks
/
create
Create post-call webhook
curl --request POST \
  --url http://localhost:8080/api/post-call-webhooks/create \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-API-SECRET: <api-key>' \
  --data '
{
  "id": "string",
  "organization_id": "string",
  "name": "string",
  "url": "string",
  "description": "string",
  "is_active": true,
  "created_at": "2026-02-05T07:39:13.915Z",
  "updated_at": "2026-02-05T07:39:13.915Z"
}
'
{
  "message": "Post-call webhook created successfully",
  "status": "success",
  "error": null,
  "data": {
    "id": "string",
    "organization_id": "string",
    "name": "string",
    "url": "string",
    "description": "string",
    "is_active": true,
    "created_at": "2026-02-05T07:39:14.135Z",
    "updated_at": "2026-02-05T07:39:14.135Z"
  }
}

Authorizations

X-API-KEY
string
header
required

API Key for MCP server and external service authentication

X-API-SECRET
string
header
required

API Secret for MCP server and external service authentication

Body

application/json
id
string
organization_id
string
name
string
url
string
description
string
is_active
boolean
created_at
string
updated_at
string

Response

Post-call webhook created successfully

message
string
status
string
error
string | null
data
object