Skip to main content
GET
/
webhooks
/
2026-03
/
{appId}
/
settings
Read webhook settings
curl --request GET \
  --url https://api.hubapi.com/webhooks/2026-03/{appId}/settings \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "targetUrl": "<string>",
  "throttling": {
    "maxConcurrentRequests": 123
  },
  "updatedAt": "2023-11-07T05:31:56Z"
}

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 identifier for the app.

Response

successful operation

createdAt
string<date-time>
required

The date and time when the webhook settings were created, in ISO 8601 format.

targetUrl
string
required

The URL to which the webhook events will be sent. It is a string.

throttling
object
required
updatedAt
string<date-time>

The date and time when the webhook settings were last updated, in ISO 8601 format.

Last modified on April 14, 2026