Remove Key
Delete a custom field key
client.v1.customFields.removeKey(CustomFieldRemoveKeyParamsbody, RequestOptionsoptions?): void
post/v1/customFields/removeKey
Remove a key from the allow list for a given entity.
Parameters
bodyentityunionkeystringCustomFieldRemoveKeyParams
import Metronome from '@metronome/sdk';
const client = new Metronome({
bearerToken: 'My Bearer Token',
});
await client.v1.customFields.removeKey({ entity: 'customer', key: 'x_account_id' });