mirror of
https://github.com/microsoft/BCQuality.git
synced 2026-08-06 17:36:53 +01:00
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 02baffe8-0600-430d-81fa-a9993685e7cb
11 lines
339 B
JavaScript
11 lines
339 B
JavaScript
function receiveBusinessCentralWebhook(request, response) {
|
|
const validationToken = request.query.validationToken;
|
|
|
|
if (typeof validationToken === "string") {
|
|
response.status(200).type("text/plain").send(validationToken);
|
|
return;
|
|
}
|
|
|
|
processNotifications(request.body.value);
|
|
response.sendStatus(200);
|
|
}
|