Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

This request will be sent to the external system if the OAuth authorization is configured in the webhook configuration.

Request

Code Block
languagebash
curl -L -X POST '<external_endpoint_url>' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <access_token>' \
-d '<webhook_payload_json>'

Parameters

Parameter

Description

<external_endpoint_url>

The value provided during the webhook configuration creation in Create webhook configuration

<access_token>

Access token received from the external system in the authorization request.

<webhook_payload_json>

The payload configured during the webhook configuration creation in Create webhook configuration

Response

See How to respond to webhook request?