Custom Pages
List custom pages
client.zeroTrust.access.customPages.list(CustomPageListParams { account_id, page, per_page } params, RequestOptionsoptions?): V4PagePaginationArray<CustomPageWithoutHTML { name, type, uid } >
GET/accounts/{account_id}/access/custom_pages
Get a custom page
client.zeroTrust.access.customPages.get(stringcustomPageId, CustomPageGetParams { account_id } params, RequestOptionsoptions?): CustomPage { custom_html, name, type, uid }
GET/accounts/{account_id}/access/custom_pages/{custom_page_id}
Create a custom page
client.zeroTrust.access.customPages.create(CustomPageCreateParams { account_id, custom_html, name, type } params, RequestOptionsoptions?): CustomPageWithoutHTML { name, type, uid }
POST/accounts/{account_id}/access/custom_pages
Update a custom page
client.zeroTrust.access.customPages.update(stringcustomPageId, CustomPageUpdateParams { account_id, custom_html, name, type } params, RequestOptionsoptions?): CustomPageWithoutHTML { name, type, uid }
PUT/accounts/{account_id}/access/custom_pages/{custom_page_id}
Delete a custom page
client.zeroTrust.access.customPages.delete(stringcustomPageId, CustomPageDeleteParams { account_id } params, RequestOptionsoptions?): CustomPageDeleteResponse { id }
DELETE/accounts/{account_id}/access/custom_pages/{custom_page_id}