Private pages API Reference

If your account has member / owner access to a private status page with secure links enabled, you're allowed to get the secure link to your page.

Endpoint:

GET /v2/pages?page=:page&per_page=:per_page
  • The default page number is 1.
  • The default per_page number is 50 and the maximum is 100 items per page.

Example response:

[
{
"id": "ckf01fonve9i40a32oas5b0uw",
"secureLink": "https://instatus.business/auth?jwt=JWT_TOKEN"
}
]

If you want to regenerate your secure link, you can do it by calling this endpoint.

Endpoint:

POST /v1/:page_id/regenerate-secure-link

Example response:

{
"id": "ckf01fonve9i40a32oas5b0uw",
"secureLink": "https://instatus.business/auth?jwt=JWT_TOKEN"
}