Actions63
- Alternative Payment Method Actions
- Billing - Price Actions
- Billing - Product Actions
- Billing - Subscription Actions
- Billing - Tax Actions
- Card Payment Actions
- Checkout Actions
- Reporting Actions
- Risks - Dispute Actions
- Risks - Fraud Prevention Actions
- Webhook Actions
- File Actions
Overview
This node interacts with the Solidgate payment gateway API to perform various billing-related operations, specifically for the 'Billing - Product' resource with the 'Create Product' operation. It allows users to create new products in the billing system by sending the necessary product details to the Solidgate API. This node is useful for automating product management in payment and billing workflows, such as adding new products to an e-commerce platform or subscription service.
Use Case Examples
- Creating a new product with specific attributes like name, description, and pricing details to be used in billing and payment processing.
- Automating product creation as part of a larger workflow that manages billing and subscriptions.
Properties
| Name | Meaning |
|---|---|
| Additional Fields | Additional fields to include in the product creation request, allowing customization of product attributes. |
Output
JSON
id- The unique identifier of the created product.name- The name of the created product.description- The description of the created product.status- The status of the product after creation (e.g., active, archived).createdAt- Timestamp when the product was created.
Dependencies
- Solidgate API key credential (public and secret keys)
Troubleshooting
- Ensure that the API keys (public and secret) are correctly configured and have the necessary permissions to create products.
- Verify that all required fields for product creation are provided in the additional fields; missing mandatory fields may cause API errors.
- Check the API endpoint URL and environment setting (production or development) to ensure requests are sent to the correct Solidgate environment.
- Handle API rate limits or network issues that might cause request failures.
- If the node throws errors related to invalid signatures, verify the HMAC signature generation logic and the secret key used.
Links
- Solidgate API - Create Product - Official API documentation for creating products in Solidgate.