Partially icon

Partially

Partially Payment Plans API

Actions37

Overview

This node integrates with the Partially Payment Plans API to manage various payment-related resources. Specifically, for the Payment Method - Delete operation, it allows users to delete a payment method by its ID. This is useful in scenarios where a customer’s saved payment method needs to be removed from the system, such as when a payment method is no longer valid or has been replaced.

Practical example:

  • A business wants to remove an outdated credit card stored for a customer to ensure future payments are not attempted on that card.

Properties

Name Meaning
Payment Method ID The unique identifier of the payment method to delete. This is required to specify which payment method should be removed.

Output

The node outputs a JSON array containing the response from the API after attempting to delete the specified payment method. Typically, this will include confirmation of deletion or relevant status information returned by the Partially API.

No binary data output is involved in this operation.

Dependencies

  • Requires an active connection to the Partially Payment Plans API.
  • Requires an API authentication token (configured as credentials in n8n) to authorize requests.
  • The node uses internal helper functions to make HTTP requests to the Partially API endpoints.

Troubleshooting

  • Common issues:

    • Providing an invalid or non-existent Payment Method ID will likely result in an error from the API indicating the resource was not found.
    • Missing or incorrect API credentials will cause authentication failures.
    • Network connectivity issues can prevent successful API calls.
  • Error messages and resolutions:

    • "404 Not Found" — The specified Payment Method ID does not exist. Verify the ID is correct.
    • "401 Unauthorized" or "403 Forbidden" — Authentication failed. Check that the API key credential is correctly configured and has necessary permissions.
    • Timeout or network errors — Ensure the n8n instance has internet access and the Partially API endpoint is reachable.

Links and References

Discussion