Remove Key
Delete a custom field key
v1.custom_fields.remove_key(CustomFieldRemoveKeyParams**kwargs)
post/v1/customFields/removeKey
Remove a key from the allow list for a given entity.
Parameters
entityliteral
Literal["alert", "billable_metric", "charge", 15 more]
keystr
from metronome import Metronome
client = Metronome(
bearer_token="My Bearer Token",
)
client.v1.custom_fields.remove_key(
entity="customer",
key="x_account_id",
)