Information Notices
Information Notice Updates
The subdomain of your status page.
You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/subdomain).
Used as a cursor for pagination.
Used as a cursor for pagination.
Set the number of information notices to return in the response. This defaults to 20 items, and can be a maximum of 100.
The list of information notices
You lack the necessary permissions to access this resource.
A resource with the provided ID was not found.
Unexpected error.
GET /api/v2/status_pages/{subdomain}/info_notices HTTP/1.1
Host: statuspal.io
Accept: */*
{
"info_notices": [
{
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"title": "We are having issues with the DB connection",
"featured_from": "2022-01-01T00:00:00",
"featured_until": "2022-01-01T00:00:00",
"service_ids": [
1
],
"updates": [
{
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"posted_at": "2022-01-01T00:00:00",
"type": "issue",
"description": "We have detected an issue with our CDN",
"description_html": "<p>We have detected an issue with our CDN</p>",
"translations": {
"en": {
"description": "English description"
},
"es": {
"description": "Spanish description"
}
},
"subscribers_notified_at": "2022-01-01T00:00:00",
"tweet": true
}
],
"url": "https://status.google.com/info_notices/123",
"translations": {
"en": {
"title": "English Title"
},
"es": {
"title": "Spanish Title"
}
}
}
],
"links": {
"next": "{STATUSPAL_HOST}/api/v2/status_pages/subdomain/info_notices?after=cUrSoR",
"prev": "text"
},
"meta": {
"total_count": 100
}
}Adds a new information notice associated to one or more services
The subdomain of your status page.
You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/subdomain).
The information notice was created
Bad request error. Probably JSON syntax is wrong, check with jsonlint.com.
Authorization information is missing or invalid.
There was a validation error
Unexpected error.
POST /api/v2/status_pages/{subdomain}/info_notices HTTP/1.1
Host: statuspal.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 493
{
"info_notice": {
"title": "We are having issues with the DB connection",
"featured_from": "2022-01-01T00:00:00",
"featured_until": "2022-01-01T00:00:00",
"service_ids": [
1
],
"updates": [
{
"posted_at": "2022-01-01T00:00:00",
"type": "issue",
"description": "We have detected an issue with our CDN",
"translations": {
"en": {
"description": "English description"
},
"es": {
"description": "Spanish description"
}
},
"notify": true,
"tweet": true
}
],
"translations": {
"en": {
"title": "English Title"
},
"es": {
"title": "Spanish Title"
}
}
}
}{
"info_notice": {
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"title": "We are having issues with the DB connection",
"featured_from": "2022-01-01T00:00:00",
"featured_until": "2022-01-01T00:00:00",
"service_ids": [
1
],
"updates": [
{
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"posted_at": "2022-01-01T00:00:00",
"type": "issue",
"description": "We have detected an issue with our CDN",
"description_html": "<p>We have detected an issue with our CDN</p>",
"translations": {
"en": {
"description": "English description"
},
"es": {
"description": "Spanish description"
}
},
"subscribers_notified_at": "2022-01-01T00:00:00",
"tweet": true
}
],
"url": "https://status.google.com/info_notices/123",
"translations": {
"en": {
"title": "English Title"
},
"es": {
"title": "Spanish Title"
}
}
}
}The subdomain of your status page.
You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/subdomain).
The ID of an information notice
information notice object
You lack the necessary permissions to access this resource.
A resource with the provided ID was not found.
Unexpected error.
GET /api/v2/status_pages/{subdomain}/info_notices/{infoNoticeId} HTTP/1.1
Host: statuspal.io
Accept: */*
{
"info_notice": {
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"title": "We are having issues with the DB connection",
"featured_from": "2022-01-01T00:00:00",
"featured_until": "2022-01-01T00:00:00",
"service_ids": [
1
],
"updates": [
{
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"posted_at": "2022-01-01T00:00:00",
"type": "issue",
"description": "We have detected an issue with our CDN",
"description_html": "<p>We have detected an issue with our CDN</p>",
"translations": {
"en": {
"description": "English description"
},
"es": {
"description": "Spanish description"
}
},
"subscribers_notified_at": "2022-01-01T00:00:00",
"tweet": true
}
],
"url": "https://status.google.com/info_notices/123",
"translations": {
"en": {
"title": "English Title"
},
"es": {
"title": "Spanish Title"
}
}
}
}The ID of an information notice
The subdomain of your status page.
You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/subdomain).
The information notice was updated
Bad request error. Probably JSON syntax is wrong, check with jsonlint.com.
Authorization information is missing or invalid.
You lack the necessary permissions to access this resource.
A resource with the provided ID was not found.
There was a validation error
Unexpected error.
PUT /api/v2/status_pages/{subdomain}/info_notices/{infoNoticeId} HTTP/1.1
Host: statuspal.io
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 493
{
"info_notice": {
"title": "We are having issues with the DB connection",
"featured_from": "2022-01-01T00:00:00",
"featured_until": "2022-01-01T00:00:00",
"service_ids": [
1
],
"updates": [
{
"posted_at": "2022-01-01T00:00:00",
"type": "issue",
"description": "We have detected an issue with our CDN",
"translations": {
"en": {
"description": "English description"
},
"es": {
"description": "Spanish description"
}
},
"notify": true,
"tweet": true
}
],
"translations": {
"en": {
"title": "English Title"
},
"es": {
"title": "Spanish Title"
}
}
}
}{
"info_notice": {
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"title": "We are having issues with the DB connection",
"featured_from": "2022-01-01T00:00:00",
"featured_until": "2022-01-01T00:00:00",
"service_ids": [
1
],
"updates": [
{
"id": 89,
"inserted_at": "2022-01-01T00:00:00",
"updated_at": "2022-01-01T00:00:00",
"posted_at": "2022-01-01T00:00:00",
"type": "issue",
"description": "We have detected an issue with our CDN",
"description_html": "<p>We have detected an issue with our CDN</p>",
"translations": {
"en": {
"description": "English description"
},
"es": {
"description": "Spanish description"
}
},
"subscribers_notified_at": "2022-01-01T00:00:00",
"tweet": true
}
],
"url": "https://status.google.com/info_notices/123",
"translations": {
"en": {
"title": "English Title"
},
"es": {
"title": "Spanish Title"
}
}
}
}The subdomain of your status page.
You can find this under your status page settings, the Subdomain field is found under the "Domain name" section. Alternatively find it in the URL of your admin dashboard (e.g. statuspal.io/admin/subdomain).
The ID of an information notice
Information notice deleted successfully
Authorization information is missing or invalid.
You lack the necessary permissions to access this resource.
A resource with the provided ID was not found.
Unexpected error.
DELETE /api/v2/status_pages/{subdomain}/info_notices/{infoNoticeId} HTTP/1.1
Host: statuspal.io
Authorization: YOUR_API_KEY
Accept: */*
No content
Last updated