Skip to main content
GET
/
tenant
/
{tenant_name}
/
notifications
Get notifications for each tenant
curl --request GET \
  --url https://api.example.com/tenant/{tenant_name}/notifications \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "type": "port_and_cloud_link_dont_exist",
      "title": "port_and_cloud_link_dont_exist",
      "text": "<string>"
    }
  ],
  "count": 0,
  "total_count": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

Response

Successful Response

items
TenantNotificationsResponse · object[]
required
count
integer
default:0
total_count
integer
default:0