Get a custom page
client.customPages.get("1000_errors" | "500_errors" | "basic_challenge" | 7 moreidentifier, CustomPageGetParams { account_id, zone_id } params?, RequestOptionsoptions?): CustomPageGetResponse { id, created_on, description, 5 more }
GET/{accounts_or_zones}/{account_or_zone_id}/custom_pages/{identifier}
Fetches the details of a custom page.
Security
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Get a custom page
import Cloudflare from 'cloudflare';
const client = new Cloudflare({
apiEmail: process.env['CLOUDFLARE_EMAIL'], // This is the default and can be omitted
apiKey: process.env['CLOUDFLARE_API_KEY'], // This is the default and can be omitted
});
const customPage = await client.customPages.get('ratelimit_block', { account_id: 'account_id' });
console.log(customPage.id);{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"id": "basic_challenge",
"created_on": "2014-01-01T05:20:00.12345Z",
"description": "Basic Challenge",
"modified_on": "2014-01-01T05:20:00.12345Z",
"preview_target": "block:basic-sec-captcha",
"required_tokens": [
"::CAPTCHA_BOX::"
],
"state": "default",
"url": "http://www.example.com"
}
}Returns Examples
{
"errors": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"messages": [
{
"code": 1000,
"message": "message",
"documentation_url": "documentation_url",
"source": {
"pointer": "pointer"
}
}
],
"success": true,
"result": {
"id": "basic_challenge",
"created_on": "2014-01-01T05:20:00.12345Z",
"description": "Basic Challenge",
"modified_on": "2014-01-01T05:20:00.12345Z",
"preview_target": "block:basic-sec-captcha",
"required_tokens": [
"::CAPTCHA_BOX::"
],
"state": "default",
"url": "http://www.example.com"
}
}