## Archive `client.V1.Customers.Archive(ctx, body) (*V1CustomerArchiveResponse, error)` **post** `/v1/customers/archive` Archive a customer Note: any alerts associated with the customer will not be triggered. ### Parameters - **body:** `V1CustomerArchiveParams` - **ID:** `param.Field[ID]` ### Returns - Not supported - **Data:** `ID` ### Example ```go package main import ( "context" "fmt" "github.com/Metronome-Industries/metronome-go" "github.com/Metronome-Industries/metronome-go/option" "github.com/Metronome-Industries/metronome-go/shared" ) func main() { client := metronome.NewClient( option.WithBearerToken("My Bearer Token"), ) response, err := client.V1.Customers.Archive(context.TODO(), metronome.V1CustomerArchiveParams{ ID: shared.IDParam{ }, }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", response.Data) } ```