Skip to main content
POST
/
webhook
Register a webhook endpoint
curl --request POST \
  --url https://app.lyra.so/api/v1/webhook \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example.com/webhook",
  "events": [
    "meeting.ended"
  ]
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
url
string<uri>
required
Example:

"https://example.com/webhook"

events
enum<string>[]
required
Available options:
meeting.ended
Example:
["meeting.ended"]

Response

Webhook created