Show the navigation →

API Problem Reports Resource

Returns a list of your submitted problem reports, past and current.

Address

https://okcountyrecords.com/api/v1/problem-reports

Parameters

NameDescription
resolvedCan be 1 or 0. Return only reports that are or are not resolved.
countyA county name.
bookA book number.
beginning_pageThe number of the first page of the instrument.
created_date_startOnly return reports created after this date.
created_date_endOnly return reports created before this date.
resolved_date_startOnly return reports resolved after this date.
resolved_date_endOnly return reports resolved before this date.
results_per_pageThe maximum number of results to include on each page. Default and maximum of 100.
result_pageThe page number of results to be returned. Default is 1. Can be used to iterate over multiple pages of results.

Example Request

https://okcountyrecords.com/api/v1/problem-reports?resolved=1
[
	{
		"county": "Adair",
		"book": "000293",
		"beginning_page": "0737",
		"created_date": "2018-05-01 14:01:20.712932",
		"resolved": true,
		"resolved_date": "2018-05-01 14:01:53.743512",
		"resolution": "manually-fixed",
		"detail_url": "\/detail\/adair\/1996-035627\/2221655",
		"return_email": "john.doe@someservice.com",
		"return_webhook": "http://mysite.com/problem-resolved"
		"description": "The grantor's name is misspelled.",
		"incorrect_legal_description": false,
		"incorrect_images": false,
		"incorrect_instrument_type": false,
		"incorrect_parties": true
	}
]

See the Report a Problem resource for a full list of possible resolutions, and the Search resource for information on paging through results.