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-31import requests
url = "https://clearinghouse.net/api/v2p1/cases?terminating_date_from=2018-01-01&terminating_date_to=2018-12-31"
headers = { 'Authorization': 'Token XXXXXXXXXX',
'User-Agent': 'Chrome v22.2 Linux Ubuntu'
}
response = requests.request("GET", url, headers=headers, data={})
print(response.text)Last updated