## Create new saved string queries in bulk `client.BrandProtection.Queries.Bulk(ctx, params) error` **post** `/accounts/{account_id}/brand-protection/queries/bulk` Return a success message after creating new saved string queries in bulk ### Parameters - `params QueryBulkParams` - `AccountID param.Field[string]` Path param - `Queries param.Field[[]map[string, unknown]]` Body param ### Example ```go package main import ( "context" "github.com/cloudflare/cloudflare-go" "github.com/cloudflare/cloudflare-go/brand_protection" "github.com/cloudflare/cloudflare-go/option" ) func main() { client := cloudflare.NewClient( option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"), ) err := client.BrandProtection.Queries.Bulk(context.TODO(), brand_protection.QueryBulkParams{ AccountID: cloudflare.F("x"), }) if err != nil { panic(err.Error()) } } ```