A Graze API GET request that returns a list of process names for a specified Situation.
Back to Graze API EndPoint Reference.
Endpoint getSituationProcesses
takes the following request arguments:
Name | Type | Required | Description |
---|---|---|---|
| String | Yes | A valid |
| Number | Yes | ID of the Situation you want to return the process names for. |
Endpoint getSituationProcesses
returns the following response:
Successful requests return a JSON object containing the following:
Name | Type | Description |
---|---|---|
| Array | A list of all the Situation's process names. |
The following examples demonstrate typical use of endpoint getSituationProcesses
:
Example cURL request to return all the process names for Situation 473:
curl -G -u graze:graze -k -v "https://localhost/graze/v1/getSituationProcesses" \
--data-urlencode "sitn_id=473"
Example response returning a list of all the Situation's process names:
{
"processes":
[
"Knowledge Management",
"Online Transaction Processing",
"Web Content Management",
"40GbE",
"8-bit Unicode Transcoding Platform"
]
}