Delete Values
Delete custom fields
client.v1.customFields.deleteValues(CustomFieldDeleteValuesParamsbody, RequestOptionsoptions?): void
post/v1/customFields/deleteValues
Deletes one or more custom fields on an instance of a Metronome entity.
Parameters
bodyentityunionentity_idstringkeysarrayCustomFieldDeleteValuesParams
import Metronome from '@metronome/sdk';
const client = new Metronome({
bearerToken: 'My Bearer Token',
});
await client.v1.customFields.deleteValues({
entity: 'customer',
entity_id: '99594816-e8a5-4bca-be21-8d1de0f45120',
keys: ['x_account_id'],
});