Webhooks

This article explains how to configure and use Syskit Point's webhooks.

Webhooks are push notifications sent by Syskit Point in the form of HTTP requests to a registered webhook endpoint when an event occurs.

To successfully enable webhooks in Syskit Point, you need to perform the following steps:

  • Register endpoint to which Syskit Point will send notifications.

  • Obtain the signature key and secure your endpoint.

    • It is recommended for your webhook handler to verify that the webhook requests are generated by Syskit Point.

Note that you must set up an HTTP endpoint function that can accept webhook requests with a POST method.

Registering a Webhook Endpoint with Syskit Point API

Please note! The application used to access the webhooks endpoint needs to have the Point.Admin app role.

To register a webhook endpoint via the Syskit Point API, you need to use the following POST request:

POST {{baseURL}}/v1.0/webhooks/endpoints

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Body

NameTypeDescription

endpoint

string

Webhook endpoint URL

types

array

Types of notifications

{
  "endpoint": "https://contoso.azurewebsites.net/api/Logger?code=o74oKsbrgHDI-RnekJXdbR3Fba7mZxEmJQNyCIpV6z-ZAzFuwnaWJg==",
  "types": [
    "*"
  ]
}

You can subscribe to all event types using the * symbol, as shown in the example.

Types

Syskit Point can send the following types of events:

TypeDescription

ProvisioningStarted

Triggered when the Provisioning process starts

ProvisioningCompleted

Triggered when the Provisioning process completes.

ProvisioningFailed

Triggered when the Provisioning process fails.

Below, you can find examples for all types:

{
  "ProvisioningStarted":  
  {
     name = "name",
     type = "teams",
     requestedOn = "datetime",
     requesterId = "guid"
  }
}

Response

Successful registration of the webhook endpoint results in response status 200.

{
    Null
}

Webhook Events

Syskit Point sends a POST request to the registered webhook endpoint URL. The event object has the following body structure:

{
    "type": "type",
    "content": {serializedContent},
    "meta": {
        "timeStamp": "timestamp",
        "idempotencyKey": "key"
    }
}

Each webhook event also sends two headers:

  • Signature: Contains the message signature created using the hashing algorithm provided in the Algorithm header using a signature key.

  • Algorithm: The hashing algorithm used to create the message signature.

Signature Validation

To verify the notification was sent by Syskit Point:

  • Get the signature key via Syskit Point API

  • Create a signature using the key to compare with the signature in the received event object

To get the signature key, send the following GET request.

GET {{baseURL}}/v1.0/options

Response

Successful request results in response status 200 and provides the Signature Authentication Key.

{
    "webhooksSignatureAuthenticationKey": "158b08cc-6a06-49f2-a724-2bc514fdcf1e"
}

Create Signature

Below is the code example you can use to create the signature, which can then be compared with the one received in the event object to verify it was sent from Syskit Point.

private static string generateSignature(string content, string authKey)
{
    var keyBytes = Encoding.UTF8.GetBytes(authKey);
    var payloadBytes = Encoding.UTF8.GetBytes(content);

    using var hmac = new HMACSHA256(keyBytes);
    var hashBytes = hmac.ComputeHash(payloadBytes);
    return Convert.ToBase64String(hashBytes);
}

Last updated