Get All Assignees
GET/v1/api/incidents/assignee
Retrieve information about all assignees that you can use to monitor team members who can examine incidents.
Responses
- 200
- 400
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
- assignees
Schema
- Array [
- ]
createdAt string
The creation time of the DLP incident
emailAddress string
Email address of the assignee
firstName string
First name of the assignee
id uuid
ID of the assignee
lastName string
Last name of the assignee
status stringrequired
Possible values: [ACTIVE
, INACTIVE
]
Signifies whether the assignee is active or inactive
tenantId string
The TSG enabled tenant group ID
updatedAt string
The last updated time of the incident
[
{
"createdAt": "yyyy-MMM-dd HH:mm:ss z",
"emailAddress": "string",
"firstName": "string",
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"lastName": "string",
"status": "\"ACTIVE\" or \"INACTIVE\"",
"tenantId": "string",
"updatedAt": "yyyy-MMM-dd HH:mm:ss z"
}
]
[
{
"createdAt": "2024-Jan-11 23:16:33 UTC",
"emailAddress": "test@test.com",
"firstName": "test u",
"id": "00d53ebf-c386-4b95-ad05-6819517c3450",
"lastName": "test",
"status": "ACTIVE",
"tenantId": "5886928188517009408",
"updatedAt": "2024-Feb-14 19:13:01 UTC"
},
{
"createdAt": "2023-Aug-03 21:23:39 UTC",
"emailAddress": "user1@test.com",
"firstName": "user",
"id": "133b9b0d-6e64-40ca-abec-15ff3b906b80",
"lastName": "my last name",
"status": "ACTIVE",
"tenantId": "5886928188517009408"
}
]
Bad Request
Unauthorized
Forbidden
Not Found
Internal server error
Loading...