Skip to main content

Akoya
Documentation

Maintenance notification details

GET

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.


Path Parameters

  1. version*

    stringdefault: v1

    version of endpoint.

  2. notificationPayloadId*

    string


Responses

  1. 200

    OK

    Response Body

      id

      string

      category

      string

      type

      string

      institutionId

      string

      startTime

      string

      endTime

      string

      title

      string

      message

      string

      impactedService

      array of strings

        string

CTRL + K

Try it

Authorization

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));