Getting Started
Calls
Contact Custom Fields
Phone Numbers
Webhooks
Get a webhook by ID
Get a webhook by its unique identifier.
GET
/
v1
/
webhooks
/
{id}
Copy
Ask AI
curl --request GET \
--url https://dev-public-api.openphone.dev/v1/webhooks/{id}
Copy
Ask AI
{
"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": [
"message.received"
],
"resourceIds": [
"PN1234"
]
}
}
Path Parameters
The unique identifier of a webhook
Examples:
"WH12345"
Response
200
application/json
Success
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://dev-public-api.openphone.dev/v1/webhooks/{id}
Copy
Ask AI
{
"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": [
"message.received"
],
"resourceIds": [
"PN1234"
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.