GET /api/client/receipts

The provider's page with the client's receipts, when the provider has one; null otherwise, and the receipts are in the deposits.

Surface: client. Who may call: client. Key: client.receipts.

Example request

curl -X GET https://caremcp.com/api/client/receipts \
  -H "Authorization: Bearer <session or access token>"

Input schema

{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {}
}

Output schema

{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "url": {
   "type": [
    "string",
    "null"
   ]
  }
 },
 "required": [
  "url"
 ],
 "additionalProperties": false
}