Bizappay icon

Bizappay

Interact with Bizappay API

Actions13

Overview

This node integrates with the Bizappay API to manage billing-related operations. Specifically, for the Bill - Get operation, it retrieves detailed information about a specific bill using its unique Bill ID. This is useful in scenarios where you need to fetch the current status, amount, payer details, or other metadata of a bill previously created or issued.

Practical examples include:

  • Fetching bill details to display payment status in a customer portal.
  • Retrieving bill information before processing refunds or adjustments.
  • Integrating with accounting systems to verify bill data.

Properties

Name Meaning
Bill ID The unique identifier of the bill to retrieve. This is a required string input that specifies which bill's details to fetch from Bizappay.

Output

The output JSON contains the detailed information of the requested bill as returned by the Bizappay API. This typically includes fields such as:

  • Bill identifiers (e.g., billId)
  • Bill name/title
  • Amount and currency
  • Category code or name
  • Payer information (name, email, phone)
  • Description and due date
  • Status and payment details
  • URLs related to payment or callbacks

The exact structure depends on the API response but generally provides comprehensive bill data.

If the operation succeeds, the output JSON will contain these details under the json field of the node's output item.

No binary data is produced by this operation.

Dependencies

  • Requires an active connection to the Bizappay API via an API key credential configured in n8n.
  • The node uses HTTP POST requests to communicate with Bizappay endpoints.
  • No additional external dependencies beyond the configured API credentials.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Bill ID will result in an error or empty response.
    • Network connectivity problems can cause request failures.
    • Missing or incorrect API authentication credentials will prevent successful API calls.
  • Error messages:

    • "Bill ID is required for get operation": Ensure the Bill ID property is set.
    • "Failed to retrieve bill details" or similar API errors: Check API credentials and network access.
    • If the bill is not found, the API may return an error or empty data; verify the Bill ID correctness.
  • Resolution tips:

    • Double-check the Bill ID value for typos.
    • Confirm that the API key credential is valid and has necessary permissions.
    • Test connectivity to the Bizappay API endpoint outside n8n if needed.

Links and References


Note: This summary focuses exclusively on the "Bill - Get" operation as requested.

Discussion