Skip to content
Start here

Custom Pages

List custom pages
GET/accounts/{account_id}/access/custom_pages
Get a custom page
GET/accounts/{account_id}/access/custom_pages/{custom_page_id}
Create a custom page
POST/accounts/{account_id}/access/custom_pages
Update a custom page
PUT/accounts/{account_id}/access/custom_pages/{custom_page_id}
Delete a custom page
DELETE/accounts/{account_id}/access/custom_pages/{custom_page_id}
ModelsExpand Collapse
CustomPage = object { custom_html, name, type, uid }
custom_html: string

Custom page HTML.

name: string

Custom page name.

type: "identity_denied" or "forbidden"

Custom page type.

One of the following:
"identity_denied"
"forbidden"
uid: optional string

UUID.

maxLength36
CustomPageWithoutHTML = object { name, type, uid }
name: string

Custom page name.

type: "identity_denied" or "forbidden"

Custom page type.

One of the following:
"identity_denied"
"forbidden"
uid: optional string

UUID.

maxLength36
CustomPageDeleteResponse = object { id }
id: optional string

UUID.

maxLength36