GET /forensics/case_management/cases
Retrieves a list of cases.
Retrieves a list of cases.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
Range |
header |
Optional |
String |
text/plain |
Optional - Use this parameter to restrict the number of elements that are returned in the list to a specified range. The list is indexed starting at zero. |
fields |
query |
Optional |
String |
text/plain |
Optional - Use this parameter to specify which fields you would like to get back in the response. Fields that are not named are excluded. Specify subfields in brackets and multiple fields in the same object are separated by commas. |
filter |
query |
Optional |
String |
text/plain |
Optional - This parameter is used to restrict the elements in a list base on the contents of various fields. |
HTTP Response Code | Unique Code | Description |
---|---|---|
200 |
The cases were retrieved. |
|
500 |
1020 |
An error occurred during the retrieval of the case list. |
Response Description
- assigned_to - String Array - Usernames of the users who have access to the case. Users must have the FORENSICS role. Authorized services are not allowed.
- id - Long - ID for the case.
- name - String - The name of the case.
Response Sample
[
{
"assigned_to": [
"String"
],
"id": 42,
"name": "String"
}
]