POST CalibrationFinished

POST https://webhook.example.com

Headers

  • The ID of the webhook that sent the request.

  • The HMAC-SHA256 signature of the request body and the secret. This can be used to verify the sender and content of the request.

application/json

Body

Calibration has finished

  • type string

    Value is CalibrationFinished.

  • time string(date-time)
  • status string

    Values are Success or Failed.

  • error string

    May contain additional error message if status is Failed

  • data object

    Status of the Calibration

    Additional properties are allowed.

    Hide data attributes Show data attributes object

Responses

  • You must return a 200 OK status to indicate that the data was received successfully.

POST CalibrationFinished
Request examples
# Headers
X-Webhook-Id: string
X-Webhook-Signature: string

# Payload
{
  "type": "CalibrationFinished",
  "instrument": "string",
  "time": "2025-05-04T09:42:00Z",
  "status": "Success",
  "error": "string",
  "data": {
    "time": "2020-01-01T00:00:00Z",
    "level": 93.7,
    "offset": 0.04,
    "status": "Success"
  }
}