A Graze API POST request that adds a new process to the database. Processes are external business entities related to business activities that are affected by the incidents that Moogsoft Enterprise captures in Situations.
Back to Graze API EndPoint Reference.
Endpoint addProcess
takes the following request arguments:
Name | Type | Required | Description |
---|---|---|---|
| String | Yes | A valid |
| String | Yes | Process name. |
| String | No | Process description. |
Endpoint addProcess
returns the following response:
The following examples demonstrate typical use of endpoint addProcess
:
Example cURL request to add a new process "New Proc 1" with a description:
curl -X POST -u graze:graze -k -v "https://localhost/graze/v1/addProcess" -H "Content-Type: application/json; charset=UTF-8" -d '{"name" : "New Proc 1", "description" : "This is my description 12345"}'