Skip to main content
GET
/
api
/
v1
/
webhooks
/
{webhookId}
GetWebhook
curl --request GET \
  --url https://your-sift-api-url.com/api/v1/webhooks/{webhookId} \
  --header 'Authorization: Bearer <token>'
{
  "webhook": {
    "webhookId": "<string>",
    "organizationId": "<string>",
    "targetUrl": "<string>",
    "name": "<string>",
    "eventType": "WEBHOOK_EVENT_TYPE_UNSPECIFIED",
    "payload": "<string>",
    "createdDate": "2023-11-07T05:31:56Z",
    "modifiedDate": "2023-11-07T05:31:56Z",
    "archivedDate": "2023-11-07T05:31:56Z",
    "createdByUserId": "<string>",
    "modifiedByUserId": "<string>",
    "httpHeaders": [
      {
        "name": "<string>",
        "value": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

webhookId
string
required

Response

A successful response.

The response of a call to WebhookService_GetWebhook.

webhook
object
required