Partially icon

Partially

Partially Payment Plans API

Actions37

Overview

This node integrates with the Partially Payment Plans API to manage various resources related to payment plans, offers, customers, and more. Specifically, for the Offer Item resource with the Delete operation, it allows users to delete an existing offer item by its unique identifier.

Common scenarios where this node is beneficial include automating the management of payment plan components in e-commerce or subscription platforms, such as removing obsolete or incorrect offer items from a payment plan setup.

Practical example: If you have an offer item that is no longer valid or was created by mistake, you can use this node to delete it programmatically within your workflow, ensuring your payment plans remain accurate and up-to-date.

Properties

Name Meaning
Offer Item ID The unique identifier of the offer item to delete. This is required to specify which offer item should be removed.

Output

The output of the node is a JSON array containing the response from the Partially API after attempting to delete the specified offer item. Typically, this will include confirmation of deletion or details about the deleted offer item.

No binary data output is produced by this operation.

Dependencies

  • Requires an active connection to the Partially Payment Plans API.
  • Requires an API authentication token or API key credential configured in n8n to authorize requests.
  • The node uses the internal helper function partiallyApiRequest to make HTTP requests to the Partially API endpoints.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Offer Item ID will likely result in an error from the API indicating the item could not be found.
    • Missing or incorrect API credentials will cause authentication failures.
    • Network connectivity issues may prevent successful API calls.
  • Error messages and resolutions:

    • "404 Not Found" — The specified Offer Item ID does not exist. Verify the ID is correct.
    • "401 Unauthorized" or "403 Forbidden" — Authentication failed. Check that the API key or token is correctly configured and has sufficient permissions.
    • Timeout or network errors — Ensure your server or environment has internet access and the Partially API endpoint is reachable.

Links and References

Discussion