GET Change
URL: {{server-url}}/api/v1/change/{{Change-Id}}
You can fetch the details of a change ticket by calling the above endpoint with the ticket ID.
You need the following key-values:
Header
Key | Description |
---|---|
Authorization | Bearer {access token obtained after authorization} |
Example (Request & Response)
Request
curl --request GET \
--url 'https://172.16.12.135/api/v1/change/1'
Response
{
"id": 1,
"name": "CHG-1",
"subject": "Need to change the Laptop",
"description": "",
"createdTime": 1684928778516,
"updatedTime": 1684928778516,
"requesterEmail": "john@motadata.com",
"requesterName": "john",
"priorityName": "Low",
"urgencyName": "Low",
"impactName": "Low",
"riskType": "Low",
"tags": [],
"startDate": 1684928700000,
"endDate": 1685533500000,
"fileAttachments": [],
"customField": {},
"statusName": "Requested"
}