For the complete documentation index, see llms.txt. This page is also available as Markdown.

Terminating Date

Get cases by terminating date range

Use terminating_date_from and/or terminating_date_to to filter cases by their terminating date. Both parameters accept dates in YYYY-MM-DD format. Either or both parameters may be provided; when used together they define an inclusive range.

terminating_date_from

GET https://clearinghouse.net/api/v2p1/cases/?terminating_date_from=YYYY-MM-DD

Returns all cases with a terminating date on or after the given date.

terminating_date_to

Returns all cases with a terminating date on or before the given date.

Headers

Name
Type
Description

Authorization*

String

Authorization

Token XXXXXXXXXXX

where

XXXXXXXXXXX

is the token string

Example

https://clearinghouse.net/api/v2p1/cases?terminating_date_from=2018-01-01&terminating_date_to=2018-12-31

Last updated