Case Enforcement
Enforcement Criminal Case Summary Report Search
The get_crcase_report service end point returns a complex object of criminal case detials based on the provided criminal case id.
get/case_rest_services.get_crcase_report
Query parameters
p_idstring
Prosecution Summary Identifier. Enter the numeric prosecution summary identifier to retrieve the criminal case report.
output'JSONP' | 'JSON' | 'XML'
Output Format Flag. Enter one of the following keywords:
- JSON = Data model formatted as Javascript Object Notation (default).
- JSONP = Data model formatted as Javascript Object Notation with Padding.
- XML = Data model formatted as Extensible Markup Language.
callbackstring
JSONP Callback. For use with JSONP and GEOJSONP output only. Enter a name of the function in which to wrap the JSON response.
mapsetstring
Identifies the maxium number of case facilities to return from the case_rest_services.get_case_info query.
Response
Returns a complex object containing detailed criminal case information for the provided Case Identifier.
Example response
{
"Results": {
"CRCaseInformation": {
"CaseIdentifier": "1000",
"FiscalYear": "2004",
"Statutes": "Title 18 U.S. Criminal Code"
},
"CRDefendants": [
{
"DefendantType": "Principal Defendant",
"District": "S.D.",
"DocketNumber": "04-20324-CR-FOOO",
"Name": "George D. Smith",
"State": "FL"
}
],
"CRDetails": [
{
"DetailDate": "01-APR-02"
}
],
"Locations": [
{
"EPARegion": "04",
"Latitude": "34.606651",
"Longitude": "-86.982419",
"State": "FL",
"Zip": "53140"
}
],
"Message": "Success"
}
}