Update a custom page
client.CustomPages.Update(ctx, identifier, params) (*CustomPageUpdateResponse, error)
PUT/{accounts_or_zones}/{account_or_zone_id}/custom_pages/{identifier}
Updates the configuration of an existing 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)
Update a custom page
package main
import (
"context"
"fmt"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/custom_pages"
"github.com/cloudflare/cloudflare-go/option"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIKey("144c9defac04969c7bfad8efaa8ea194"),
option.WithAPIEmail("user@example.com"),
)
customPage, err := client.CustomPages.Update(
context.TODO(),
custom_pages.CustomPageUpdateParamsIdentifierRatelimitBlock,
custom_pages.CustomPageUpdateParams{
State: cloudflare.F(custom_pages.CustomPageUpdateParamsStateDefault),
URL: cloudflare.F("http://www.example.com"),
},
)
if err != nil {
panic(err.Error())
}
fmt.Printf("%+v\n", 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"
}
}