Skip to main content
POST
/
webhooks
Create webhook
curl --request POST \
  --url https://api.pokulabs.com/webhooks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "eventTypes": [],
  "name": "<string>",
  "signingSecret": "<string>",
  "headers": {}
}
'

Authorizations

Authorization
string
header
required

Authentication header containing your Poku API key. Find it in the Poku dashboard. The format is "Bearer YOUR_API_KEY"

Body

application/json
url
string<uri>
required
eventTypes
enum<string>[]
required
Available options:
message.received,
form.received,
call.conversation.ended
name
string
signingSecret
string
headers
object