Actions19
- Atualizar Webhook
- Consultar Afiliado
- Consultar Estatísticas De Vendas
- Consultar Produto
- Consultar Saldo Específico
- Consultar Saque
- Consultar Venda
- Consultar Webhook
- Criar Webhook
- Deletar Webhook
- Editar Afiliado
- Listar Afiliados
- Listar Participantes
- Listar Produtos
- Listar Saques
- Listar Vendas
- Listar Webhooks
- Realizar Saque
- Reembolsar Venda
Overview
This node integrates with the Kiwify API to perform various operations related to sales, products, affiliates, webhooks, payouts, and account details. Specifically, for the "Consultar Venda" (Consult Sale) operation, it retrieves detailed information about a specific sale by its ID.
Typical use cases include:
- Fetching detailed data about a particular sale for reporting or auditing.
- Automating workflows that depend on sale status or details.
- Integrating Kiwify sales data into other systems or dashboards.
For example, you might use this node to automatically retrieve sale details after a purchase is made, then trigger follow-up actions such as sending confirmation emails or updating inventory.
Properties
| Name | Meaning |
|---|---|
| ID Da Venda | The unique identifier of the sale to be consulted or refunded. Required for this operation. |
Output
The node outputs JSON data representing the detailed information of the requested sale. This includes all relevant fields returned by the Kiwify API for a sale, such as buyer info, product details, payment status, timestamps, and more.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for authenticating with the Kiwify API.
- Needs the user to configure the credential with client ID, client secret, and account ID.
- The node internally obtains an OAuth access token before making API requests.
- All API calls are made to
https://public-api.kiwify.com/v1/.
Troubleshooting
- Invalid or missing sale ID: Ensure the "ID Da Venda" property is correctly set and corresponds to an existing sale in your Kiwify account.
- Authentication errors: Verify that the API credentials are valid and have the necessary permissions.
- API rate limits or downtime: If requests fail repeatedly, check Kiwify's API status and consider implementing retry logic.
- Unexpected response structure: Confirm that the Kiwify API version matches the one expected by the node; breaking changes could affect output.
Common error messages may include authentication failures, 404 not found if the sale ID does not exist, or validation errors if parameters are incorrect.
Links and References
- Kiwify API Documentation (official API docs, useful for understanding available endpoints and data structures)
- n8n Documentation (for general guidance on using custom nodes and credentials)