Skip to main content
GET
/
reports
/
wor
Write-Off Report
curl --request GET \
  --url https://api.montereyfinancial.app/reports/wor \
  --header 'Authorization: Bearer <token>'
{
  "rows": [
    {
      "account_id": "<string>",
      "organization_id": "<string>",
      "status_code": "<string>",
      "effective_from": "2023-11-07T05:31:56Z",
      "previous_status_code": "<string>",
      "status_reason_code": "<string>",
      "reason": "<string>"
    }
  ],
  "page": {
    "has_more": true,
    "limit": 123,
    "next_cursor": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.montereyfinancial.dev/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Static API key issued via the client portal. Treat it like a password.

Query Parameters

from
string<date>
required
to
string<date>
required
organization_id
string | null
cursor
string | null

Opaque pagination cursor from a previous response's page.next_cursor. Omit on the first page.

limit
integer | null

Page size for cursor pagination. Default 100, minimum 1, maximum 500. Requests above the maximum return 422 — narrow your page size and use the returned next_cursor to walk additional pages.

Required range: 1 <= x <= 500

Response

Successful Response

rows
LifecycleRow · object[]
required
page
PageMeta · object
required