Zendry Global API 1.0 icon

Zendry Global API 1.0

Acesso universal à API Zendry (Pix, Payments, Webhooks, Account, Crypto, Checkout) via AccessToken

Actions120

Overview

This node integrates with the Zendry API to manage webhooks, specifically allowing users to remove a webhook by its type ID. It is useful in scenarios where automated notifications via webhooks need to be stopped or cleaned up, such as when a webhook is no longer needed or needs to be replaced. For example, a user can remove a webhook that was previously registered for payment notifications to prevent further callbacks.

Use Case Examples

  1. Removing a webhook by specifying its webhook_type_id to stop receiving notifications for that webhook type.
  2. Cleaning up unused webhooks in an automated workflow to maintain system hygiene.

Properties

Name Meaning
Access Token A valid Bearer access token for authenticating with the Zendry API.
Base URL The base URL of the Zendry API, defaulting to https://api.zendry.com.br, which should not be changed unless necessary.
Additional Fields Optional parameters that can be provided for the webhook operations, including webhook_type_id (required for removal), webhook URL, authorization header value, and other metadata fields.
Required Fields (JSON) JSON object containing required fields for the operation, as per the API documentation.

Output

JSON

  • json - The JSON response from the Zendry API after attempting to remove the webhook, containing details of the operation result or error information.

Dependencies

  • Zendry API

Troubleshooting

  • Ensure the access token is valid and has the necessary permissions to remove webhooks.
  • Verify that the webhook_type_id is provided and correctly corresponds to an existing webhook type; missing or incorrect IDs will cause errors.
  • Check the base URL if the API endpoint is unreachable or returns errors, especially if the default URL has been changed.
  • Handle JSON parsing errors in the 'Required Fields (JSON)' input by ensuring valid JSON format is provided.

Links

Discussion