## Archive `v1.customers.archive(**kwargs) -> CustomerArchiveResponse` **post** `/v1/customers/archive` Archive a customer Note: any alerts associated with the customer will not be triggered. ### Parameters - **id:** `String` ### Returns - `class CustomerArchiveResponse` - **data:** `ID` ### Example ```ruby require "metronome_sdk" metronome = MetronomeSDK::Client.new(bearer_token: "My Bearer Token") response = metronome.v1.customers.archive(id: "8deed800-1b7a-495d-a207-6c52bac54dc9") puts(response) ```