Add Payment Confirmation Endpoint

This POST request expects following parameters:

  • caseId / email - should be passed as body parameter, one of email or caseId is required
  • amount - required
  • paymentDate - date string in ISO format, required
  • status - string, reqruied, e.g. PAID
  • secret key should be passed as a CV-Api-Key header

The following is a production API call example.

curl -X POST https://api.care360-next.carevalidate.com/api/v1/customer-payment-confirmation
-H "Content-Type:application/json"
-H "CV-Api-Key:<redacted - obtain from CareValidate>"
-d '{
    "caseId": "<redacted - obtain from other API calls>",
    "amount": 50,
    "paymentDate": "2025-02-04",
    "status": "PAID"
}'

Was this article helpful?

That’s Great!

Thank you for your feedback

Sorry! We couldn't be helpful

Thank you for your feedback

Let us know how can we improve this article!

Select at least one of the reasons
CAPTCHA verification is required.

Feedback sent

We appreciate your effort and will try to fix the article