Get Assignee by ID
GET/v1/api/incidents/assignee/:assigneeId
Retrieve information about your assignees that you can use to monitor team members who can examine incidents.
Request
Path Parameters
assigneeId stringrequired
The ID of the assignee for the incident.
Responses
- 200
- 400
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
- assignee
Schema
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",
"id": "00d53ebf-c386-4b95-ad05-6819517c3450",
"lastName": "test",
"status": "ACTIVE",
"tenantId": "5886928188517009408"
}
Bad Request
Unauthorized
Forbidden
Not Found
Internal server error
Loading...