POST
/
v1
/
webhooks
/
calls
curl --request POST \
  --url https://api.openphone.com/v1/webhooks/calls \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://example.com/",
  "events": [
    "call.completed"
  ],
  "resourceIds": [
    "<string>"
  ],
  "userId": "US123abc",
  "label": "my webhook label",
  "status": "enabled"
}'
{
  "data": {
    "id": "WHabcd1234",
    "userId": "US123abc",
    "orgId": "OR1223abc",
    "label": "my webhook label",
    "status": "enabled",
    "url": "https://example.com/",
    "key": "example-key",
    "createdAt": "2022-01-01T00:00:00Z",
    "updatedAt": "2022-01-01T00:00:00Z",
    "deletedAt": "2022-01-01T00:00:00Z",
    "events": [
      "call.completed"
    ],
    "resourceIds": [
      "<string>"
    ]
  }
}

Body

application/json
url
string
required

The endpoint that receives events from the webhook.

Example:

"https://example.com/"

events
enum<string>[]
required
Available options:
call.completed,
call.ringing,
call.recording.completed
resourceIds
userId
string

The unique identifier of the user that creates the webhook. If not provided, default to workspace owner.

Example:

"US123abc"

label
string

Webhook's label

Example:

"my webhook label"

status
enum<string>
default:enabled

The status of the webhook.

Available options:
enabled,
disabled
Example:

"enabled"

Response

201
application/json
Success
data
object
required