Sift | Docs

GetWebhookSignatureKey

Retrieve the current webhook signature key. Will return a not found error if one doesn't yet exist.

GET
/api/v1/webhooks/signature-key

Query Parameters

organizationIdstring

Optional organization ID.

curl -X GET "<API_URL>/api/v1/webhooks/signature-key?organizationId=string" \
  -H "Authorization: Bearer <API_KEY>"

A successful response.

{
  "signatureKey": {
    "signatureKey": "string",
    "active": true,
    "createdDate": "2019-08-24T14:15:22Z",
    "modifiedDate": "2019-08-24T14:15:22Z",
    "createdByUserId": "string",
    "modifiedByUserId": "string"
  }
}