For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Get supportGet a Demo
  • Get Started
    • Welcome
    • Authorisation
    • Webhooks
  • API Reference
      • POSTGet invoice status
LogoLogo
Get supportGet a Demo
API ReferenceInvoice Status

Get invoice status

POST
https://api.caresquareapi.com/api/public/v1/invoices/status
POST
/api/public/v1/invoices/status
$curl -X POST https://api.caresquareapi.com/api/public/v1/invoices/status \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "provider_email": "provider@example.com",
> "invoice_number": "INV-2024-001"
>}'
1{
2 "success": true,
3 "message": "string",
4 "data": {}
5}

Check invoice status by provider email and invoice number. Requires X-Plan-Manager-Id header. Returns the same payload shape as the remittance portal.

Was this page helpful?
Previous

List invoice view sessions

Next
Built with

Authentication

AuthorizationBearer
API key issued for your account. Send as Bearer token in the Authorization header.
X-Plan-Manager-Idstring
Plan manager UUID. Required on all public API requests to scope data access.

Request

This endpoint expects an object.
provider_emailstringRequiredformat: "email"
invoice_numberstringRequired

Response

Invoice status
successboolean
messagestring
dataobject
Invoices

Errors

403
Forbidden Error
500
Internal Server Error