## Set Ingest Aliases `client.v1.customers.setIngestAliases(CustomerSetIngestAliasesParamsparams, RequestOptionsoptions?): void` **post** `/v1/customers/{customer_id}/setIngestAliases` Sets the ingest aliases for a customer. Ingest aliases can be used in the `customer_id` field when sending usage events to Metronome. This call is idempotent. It fully replaces the set of ingest aliases for the given customer. ### Parameters - **params:** `CustomerSetIngestAliasesParams` - **customer\_id:** `string` Path param: - **ingest\_aliases:** `Array` Body param: ### Example ```node import Metronome from '@metronome/sdk'; const client = new Metronome({ bearerToken: 'My Bearer Token', }); await client.v1.customers.setIngestAliases({ customer_id: 'd7abd0cd-4ae9-4db7-8676-e986a4ebd8dc', ingest_aliases: ['team@example.com'], }); ```