GET /api/org/receipts
The provider's page with the organisation's receipts, when the provider has one; null otherwise, and the receipts are in the deposits.
Surface: organisation. Who may call: organisation. Key: organisation.receipts.
Example request
curl -X GET https://caremcp.com/api/org/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
}