To assign or re-assign an incident.
POST
https://Logpoint-IP/assign_incident
Parameter |
Value Type |
Description |
|---|---|---|
username |
String |
Logpoint username |
secret_key |
String |
Access key to uniquely identify an authorized user. Go to Finding the Access Key for information on retrieving it. |
requestData |
JSON Object |
A JSON objects containing the following parameters: incident_ids: A list of values of the field ‘id’ of one or more incident(s). new_assignee: Object id of the user to assign the incident. |
Parameters are data sent along with the request to retrieve information. It should be included in the request body as raw text. Content-Type, Content-Length, and Host must be passed in the request header. Content-Type should be application/json.
{
"username": "John",
"secret_key": "a1b2c3d4e5f6g7h8i9j0k1",
"requestData": {
"version": "0.1",
"incident_ids": [
"5a62bd8cce983de89085429c",
"5a62bd8cce983de89085429b",
"5a62bd8cce983de89085429e"
],
"new_assignee": "59b0eecfd8aaa4334ee41707"
}
}
![]()
Assigning Incident using Postman.¶
curl --location 'https://10.45.10.172/assign_incident' \
--header 'Content-Type: application/json' \
--data '{
"username": "John",
"secret_key": "a1b2c3d4e5f6g7h8i9j0k1",
"requestData": {
"version": "0.1",
"incident_ids": [
"5a62bd8cce983de89085429c",
"5a62bd8cce983de89085429b",
"5a62bd8cce983de89085429e"
],
"new_assignee": "59b0eecfd8aaa4334ee41707"
}
}'
We are glad this guide helped.
Please don't include any personal information in your comment
Contact Support