Skip to main content
POST
/
v1
/
webhooks
/
test
Send a test webhook
curl --request POST \
  --url https://integrations.salesask.com/v1/webhooks/test \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "url": "<string>",
  "recording": {
    "id": "abc123",
    "name": "Call with John Doe",
    "status": "processed",
    "organizationId": "org_abc",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "duration": 1800000,
    "urls": {
      "original": "<string>",
      "mp3": "<string>"
    },
    "summary": "<string>",
    "notes": "<string>",
    "actionItems": null,
    "coaching": null,
    "tags": [
      "<string>"
    ],
    "recording": "https://integrations.salesask.com/meetings/abc123"
  }
}
'
{
  "message": "Success"
}

Authorizations

x-api-key
string
header
required

Body

application/json
url
string<uri>
required
recording
object
required

Response

Test webhook sent

message
string
Example:

"Success"