paywise icon

paywise

Consume paywise API

Actions20

Overview

This node integrates with the Paywise API, specifically supporting multiple resources including claims, debtors, companies, users, and tokens. For the Claim resource with the Release operation, it allows users to release a claim by its ID. This is useful in case management scenarios where a claim needs to be programmatically released or unlocked for further processing or review.

Practical examples include:

  • Automatically releasing claims after certain conditions are met in a workflow.
  • Acting on behalf of a client company to release claims without manual intervention.
  • Integrating claim release functionality into larger automation pipelines involving case management.

Properties

Name Meaning
Claim ID The unique identifier of the claim to be released.
Act on Behalf of Client Boolean flag indicating whether the action should be performed on behalf of a client company.
User ID The identifier of the user to act on behalf of when Act on Behalf of Client is true.

Output

The node outputs an array of JSON objects, each representing the result of the release operation for a claim. Each output item corresponds to one input item processed. The exact structure of the JSON depends on the API response from the Paywise service but generally will confirm the success or failure of the release action.

No binary data output is indicated.

Dependencies

  • Requires an API key credential for authenticating with the Paywise API.
  • The node depends on the Paywise API endpoints for claim management.
  • Proper configuration of the API credentials within n8n is necessary.
  • Network access to the Paywise API endpoint must be available.

Troubleshooting

  • Common issues:

    • Invalid or missing Claim ID will cause the operation to fail.
    • Insufficient permissions or incorrect API credentials can lead to authentication errors.
    • If acting on behalf of a client, the User ID must be valid and authorized.
    • Network connectivity problems may prevent successful API calls.
  • Error messages:

    • "Resource "claim" is not implemented": Indicates the selected resource is not supported; ensure "Claim" is chosen.
    • "Operation "release" for resource "claim" is not implemented": Indicates the operation is not supported for the resource; verify correct operation selection.
    • API errors returned from Paywise (e.g., unauthorized, not found) should be checked against the API documentation and credentials.

Links and References

Discussion