Skip to content

Delete Custom Field

Tool name: delete-custom-field

Deletes a custom field definition in KlickTipp and with it every value the contacts of the account hold in that field. This destroys contact data and cannot be undone, so only call it for a field the user has explicitly asked to delete. Only fields the account created itself can be deleted; the global fields every KlickTipp account has are refused. A field that opt-in forms, automations or other entities still use is refused as well, and the refusal names them, so nothing that reads the field breaks silently. The placeholder of a deleted field renders an empty value wherever content still carries it.

Input schema

customFieldIdstring, [ 1 .. 100 ] characters^[A-Za-z0-9_]+$required

ID of the field to delete

accountIdnull or integer, >= 1

User ID of the account; omit for the account the access token works in

Default:null
Input example
{ "customFieldId": "string", "accountId": null }

Output schema

accountIdintegerrequired
customFieldIdstringrequired
namestringrequired
deletedbooleanrequired
placeholderstringrequired
Output example
{ "accountId": 0, "customFieldId": "string", "name": "string", "deleted": true, "placeholder": "string" }