Solidgate icon

Solidgate

Interact with Solidgate payment gateway API

Overview

This node interacts with the Solidgate payment gateway API to perform various billing-related operations on products. Specifically, the 'Get Product List' operation retrieves a list of products from the billing products resource. This node is useful for scenarios where users need to fetch and manage product data within their payment gateway environment, such as syncing product catalogs or displaying product information in an application.

Use Case Examples

  1. Fetching a list of all products available in the Solidgate billing system to display in an e-commerce dashboard.
  2. Integrating product data retrieval into an automated workflow for inventory or billing management.

Properties

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

Output

JSON

  • id - Unique identifier of the product
  • name - Name of the product
  • description - Description of the product
  • price - Price details of the product
  • status - Current status of the product (e.g., active, archived)
  • createdAt - Timestamp when the product was created
  • updatedAt - Timestamp when the product was last updated

Dependencies

  • Solidgate API key credentials (publicKey and secretKey)

Troubleshooting

  • Ensure that the API credentials (publicKey and secretKey) are correctly configured and have the necessary permissions to access product data.
  • Verify that the 'additionalFields' parameter is correctly formatted and contains valid fields supported by the Solidgate API.
  • Common error messages may include authentication failures, invalid request parameters, or network connectivity issues. Check the error message details and adjust the request or credentials accordingly.

Links

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

Discussion