GET /forensics/capture/recoveries/{id}
Retrieves a recovery based on the supplied ID.
Retrieves a recovery based on the supplied ID.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
id |
path |
Required |
Number (Integer) |
text/plain |
Required - The ID of the workflow job to retrieve. |
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. |
HTTP Response Code | Unique Code | Description |
---|---|---|
404 |
1002 |
No recovery job was found for the provided ID. |
500 |
1020 |
An error occurred during the retrieval of the recovery job. |
Response Description
A recovery that contains the following fields:
- assigned_to - String - The username of the user the recovery is assigned to.
- bpf - String - The Berkeley Packet Filter to pass to the capture device.
- case_id - String - ID of the case where the collection(s) are created.
- collection_name_suffix - String - Suffix that is used to name the collection(s) to store the recovered data in.
- id - Long - ID for the recovery.
- recovery_task_ids - Long Array - IDs for all recovery tasks belonging to this recovery.
- recovery_window_end_time - Long - End of time range for data recovery.
- recovery_window_start_time - Long - Start of time range for data recovery.
- tags - String - Identifiers applied to recovered data to assist with grouping when searching. These are user supplied string identifiers that are used to mark the data so the user can easily look up the data later.
Response Sample
{
"assigned_to": "String",
"bpf": "String",
"case_id": 42,
"collection_name_suffix": "String",
"id": 42,
"recovery_task_ids": [
42
],
"recovery_window_end_time": 42,
"recovery_window_start_time": 42,
"session_ids": [
"String"
],
"tags": [
"String"
]
}