Payhawk icon

Payhawk

Interact with the Zitadel API

Actions99

Overview

This node operation deletes a specific custom field value associated with an account. It is useful in scenarios where you need to remove outdated or incorrect custom data entries linked to accounts, such as clearing deprecated tags, preferences, or metadata fields that are no longer relevant.

Practical examples include:

  • Removing a custom attribute from a customer profile in a CRM system.
  • Deleting a custom setting or flag previously assigned to an account.
  • Cleaning up custom data fields during data maintenance or migration tasks.

Properties

Name Meaning
Account Id Identifier of the account from which the custom field value will be deleted.
Custom Field Id Identifier of the custom field that contains the value to be deleted.
Custom Field Value Id Identifier of the specific custom field value to delete.

Output

The output JSON typically contains the response from the API confirming the deletion of the custom field value. This may include status information or confirmation details indicating successful removal.

If the node supports binary data output (not evident here), it would represent any file or media related to the operation, but this operation primarily deals with JSON data.

Dependencies

  • Requires an API key credential for authentication with the external service managing custom fields.
  • The node uses a base URL configured in the credentials to send HTTP requests.
  • Depends on the external API endpoint that handles custom field value deletions.

Troubleshooting

  • Common issues:

    • Invalid or missing identifiers (Account Id, Custom Field Id, Custom Field Value Id) will cause the operation to fail.
    • Authentication errors if the API key or credentials are not set correctly.
    • Network or connectivity issues preventing access to the external API.
  • Error messages and resolutions:

    • "Unauthorized" or "Authentication failed": Verify that the API key credential is correctly configured and has necessary permissions.
    • "Not Found" or "Resource does not exist": Check that the provided IDs correspond to existing account, custom field, and value.
    • "Bad Request": Ensure all required properties are provided and valid.

Links and References

  • Refer to the external API documentation for managing custom fields and their values.
  • n8n documentation on configuring API credentials and HTTP request nodes for further customization.

Discussion