- Welcome to the EasyVista Wiki
- Integrations
- Service Manager REST API
- REST API - View the justification (comment) of a ticket
REST API - View the justification (comment) of a ticket
GET /requests/{rfc_number}/comment
- This method allows the justification (comment field) of a specified ticket to be obtained (a ticket includes incident, service request, change request, investment request, problem and event).
example /requests/I161026_000005/comment
Notes
See REST API Conventions Service Manager
- If successful, an HTTP status code 200 is returned and URL links (HREF) to the resource and the parent resource are provided.
List of parameters / fields
Mandatory parameters
You must use the mandatory parameter below in the URL.
Parameter | Type | Description / Example |
---|---|---|
rfc_number | string | Ticket identifier |
Optional parameters
None
Optional fields
None
HTTP status codes for the method
StatusHeader
Code | Error | Description |
---|
Status200
200 | OK (Success) | Request processed successfully. |
Status401
401 | Unauthorized | Authentication process for accessing the resource is incorrect: Login/Password incorrect, Invalid session, Incorrect Service Manager account.
example { "error": "Invalid Login / Password" } |
Status404
404 | Not Found | Resource not found: Incorrect URI, Missing resource, Incorrect communication with the server, rfc_number not found.
example { "error": "Resource not found" } |
Example
Result with a status code 200 returned
"HREF": "https://{your_server}/api/v1/{your_account}/requests/I161026_000005/comment",
"PARENT_HREF": "https://{your_server}/api/v1/{your_account}/requests/I161026_000005",
"COMMENT": "REST API Update - This comment has been updated from the REST API"
}
ConventionsAPI
REST API Conventions
Convention | Meaning | |
---|---|---|
Orange | Parameters used in an HTTP request string which do not correspond to Service Manager database fields.
example Method View a list of assets https://{your_server}/api/v1/{your_account}/assets?max_rows=3&fields=asset_tag |
|
Black and Bold | Parameters used in the URL of an HTTP request which correspond to Service Manager database fields.
example Method View an asset https://{your_server}/api/v1/{your_account}/assets/{asset_id} |
|
Green | Parameters used in the body of an HTTP request which represent JSON object names corresponding to Service Manager database fields; they allow the value of a database field to be assigned or modified.
example Method Close an incident/request { "closed": { "end_date": "11/20/2019 12:12:12", } } |
|
Parameters used in the body of an HTTP request which represent JSON object names not corresponding to Service Manager database fields.
example Method Reopen an incident/request { "restarted": { "comment": "string (required)" } } |