Description
This end point has been deprecated at 10.4. Represents all the comments associated with a specific step of a job workflow.
Parameters
Parameter |
Details |
f |
Description: The response format. The default response format is html.
Values: html | json |
Example Usage
Example 1: URL for the comments on step ID 14 of job ID 5 in the "Workflow" service on sampleserver.
http://sampleserver/arcgis/rest/services/Workflow/WMServer/jobs/5/workflow/steps/14/comments
JSON Response Syntax
{
"comments": [
{ "stepId": <stepId>, "user": "<username1>", "date": <timestamp1>, "comment": "<comment1>" },
{ "stepId": <stepId>, "user": "<username2>", "date": <timestamp2>, "comment": "<comment2>" },
...
]
}
JSON Response Example
{
"comments": [
{ "stepId": 14, "user": "amiller", "date": 1230768000000, "comment": "Can we skip this step?" },
{ "stepId": 14, "user": "cjones", "date": 1233360000000, "comment": "This step needs to be executed again" }
]
}