GET /siem/offenses/{offense_id}/assignable_actors
Retrieve assignable actors.
Retrieves the list of actors which can be assigned to the current offense.
MIME Type |
---|
application/json |
Parameter | Type | Optionality | Data Type | MIME Type | Description |
---|---|---|---|---|---|
offense_id |
path |
Required |
Number (Integer) |
text/plain |
Required - The offense for the provided offense ID. |
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. |
sort |
query |
Optional |
String |
text/plain |
Optional - This parameter is used to sort the elements in a list. |
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. |
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 assignable actors for this offense were retrieved. |
|
404 |
85101001 |
No offense was found for the provided offense_id. |
422 |
85101030 |
The sort field or order is not valid. |
Response Description
- user_id - the user ID of the actor.
- username - the username of the actor.
- description - the description of the actor.
Response Sample
[
{
"description": "String",
"user_id": 42,
"username": "String"
}
]