Skip to content

Latest commit

 

History

History
60 lines (28 loc) · 1.84 KB

AddWebhookRequest.md

File metadata and controls

60 lines (28 loc) · 1.84 KB

Pipedrive.AddWebhookRequest

Properties

Name Type Description Notes
subscriptionUrl String A full, valid, publicly accessible URL. Determines where to send the notifications. Please note that you cannot use Pipedrive API endpoints as the subscription_url.
eventAction String Type of action to receive notifications about. Wildcard will match all supported actions.
eventObject String Type of object to receive notifications about. Wildcard will match all supported objects.
userId Number The ID of the user this webhook will be authorized with. If not set, current authorized user will be used. Note that this does not filter only certain user's events — rather, this specifies the user's permissions under which each event is checked. Events about objects the selected user is not entitled to access are not sent. If you want to receive notifications for all events, a top-level admin user should be used. [optional]
httpAuthUser String HTTP basic auth username of the subscription URL endpoint (if required). [optional]
httpAuthPassword String HTTP basic auth password of the subscription URL endpoint (if required). [optional]

Enum: EventActionEnum

  • added (value: "added")

  • updated (value: "updated")

  • merged (value: "merged")

  • deleted (value: "deleted")

  • STAR (value: "*")

Enum: EventObjectEnum

  • activity (value: "activity")

  • activityType (value: "activityType")

  • deal (value: "deal")

  • note (value: "note")

  • organization (value: "organization")

  • person (value: "person")

  • pipeline (value: "pipeline")

  • product (value: "product")

  • stage (value: "stage")

  • user (value: "user")

  • STAR (value: "*")