Solidgate icon

Solidgate

Interact with Solidgate payment gateway API

Overview

This node interacts with the Solidgate payment gateway API to perform various billing subscription operations, specifically including listing invoices by subscription. It is useful for automating subscription billing management, such as retrieving invoice lists for a given subscription, which can help in financial tracking and customer billing processes.

Use Case Examples

  1. List all invoices associated with a specific subscription to review billing history.
  2. Retrieve invoices for a subscription to generate reports or trigger follow-up actions based on invoice status.

Properties

Name Meaning
Additional Fields Additional fields to include in the request, allowing customization of the API call with extra parameters.

Output

JSON

  • invoiceId - Unique identifier of the invoice
  • subscriptionId - Identifier of the subscription the invoice belongs to
  • amount - Amount billed in the invoice
  • currency - Currency of the invoice amount
  • status - Current status of the invoice (e.g., paid, pending)
  • date - Date when the invoice was issued

Dependencies

  • Solidgate payment gateway API

Troubleshooting

  • Ensure the API credentials (public key and secret key) are correctly configured to avoid authentication errors.
  • Verify that the subscription ID or other required fields are correctly provided in the additional fields to prevent request failures.
  • Check network connectivity and API endpoint availability if requests fail to reach the Solidgate service.
  • Handle API rate limits or errors gracefully by enabling the 'continue on fail' option to avoid workflow interruptions.

Links

  • Solidgate API Documentation - Official documentation for the Solidgate payment gateway API, useful for understanding available endpoints and parameters.

Discussion