Basic
Read webhook settings
Retrieve the webhook settings for the specified app, including the webhook’s target URL, throttle configuration, and create/update date.
get/webhooks/v3/{appId}/settings
Path parameters
appIdinteger required
The ID of the target app.
Response
successful operation
Example response
{
"createdAt": "2020-01-24T16:27:59Z",
"targetUrl": "https://www.example.com/hubspot/target",
"throttling": {
"maxConcurrentRequests": 10,
"period": "SECONDLY"
},
"updatedAt": "2020-01-24T16:32:43Z"
}