Skip to main content
GET
/
webhooks
/
v3
/
{appId}
/
settings
Read webhook settings
curl --request GET \
  --url https://api.hubapi.com/webhooks/v3/{appId}/settings \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2020-01-24T16:27:59Z",
  "targetUrl": "https://www.example.com/hubspot/target",
  "throttling": {
    "maxConcurrentRequests": 10,
    "period": "SECONDLY"
  },
  "updatedAt": "2020-01-24T16:32:43Z"
}

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Supported products

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

appId
integer<int32>
required

The ID of the target app.

Response

successful operation

Webhook settings for an app.

createdAt
string<date-time>
required

When this subscription was created, formatted as a date-time string.

targetUrl
string
required

A publicly available URL for HubSpot to call where event payloads will be delivered.

throttling
object
required

Configuration details for webhook throttling.

updatedAt
string<date-time>

When this subscription was last updated, formatted as a date-time string.

Last modified on March 30, 2026