https://sandbox-api.akoya.com/notifications/{version}/maintenance/{notificationPayloadId}
The maintenance notification details that inform you on impacted service and when it will be resolved. The notification payload id is required for this call. This id is returned in the notification sent to your webhook.
🛑 The service token should be used as the bearer token with this call.
version*
stringdefault: v1version of endpoint.
notificationPayloadId*
string200
OK
Response Body
id
string
category
string
type
string
institutionId
string
startTime
string
endTime
string
title
string
message
string
impactedService
array of strings
string
const options = {
"method": "GET",
"headers": {
"accept": "application/json"
}
}};
fetch('https://sandbox-api.akoya.com/notifications/v1/maintenance/', options)
.then(response => response.json())
.catch(err => console.error(err));