Modify organization profile.
client.Organizations.OrganizationProfile.Update(ctx, organizationID, body) error
PUT/organizations/{organization_id}/profile
Modify organization profile. (Currently in Closed Beta - see https://developers.cloudflare.com/fundamentals/organizations/)
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:
Modify organization profile.
package main
import (
"context"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/accounts"
"github.com/cloudflare/cloudflare-go/option"
"github.com/cloudflare/cloudflare-go/organizations"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIKey("144c9defac04969c7bfad8efaa8ea194"),
option.WithAPIEmail("user@example.com"),
)
err := client.Organizations.OrganizationProfile.Update(
context.TODO(),
"a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8",
organizations.OrganizationProfileUpdateParams{
AccountProfile: accounts.AccountProfileParam{
BusinessAddress: cloudflare.F("business_address"),
BusinessEmail: cloudflare.F("business_email"),
BusinessName: cloudflare.F("business_name"),
BusinessPhone: cloudflare.F("business_phone"),
ExternalMetadata: cloudflare.F("external_metadata"),
},
},
)
if err != nil {
panic(err.Error())
}
}