Delete organization member
client.Organizations.Members.Delete(ctx, organizationID, memberID) error
DELETE/organizations/{organization_id}/members/{member_id}
Delete a membership to a particular Organization. (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:
Delete organization member
package main
import (
"context"
"github.com/cloudflare/cloudflare-go"
"github.com/cloudflare/cloudflare-go/option"
)
func main() {
client := cloudflare.NewClient(
option.WithAPIKey("144c9defac04969c7bfad8efaa8ea194"),
option.WithAPIEmail("user@example.com"),
)
err := client.Organizations.Members.Delete(
context.TODO(),
"a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8",
"a7b9c3d2e8f4g1h5i6j0k9l2m3n7o4p8",
)
if err != nil {
panic(err.Error())
}
}