Arc Checklist Item
An individual item within a checklist that represents a specific action,
Attributes
id (long)
Unique identifier to identify the archived checklist item
name (string)
Name of the archived checklist item
field_type (string)
Indicates the field type of the archived checklist item
cl_value (string)
The recorded value of the archived checklist item field
order (long)
Display order of the archived checklist item
updated_by (user)read only
Indicates the user who last updated the archived checklist item
More Attributes Expand all
Get Arc Checklist Item
This operation helps to get a single archived checklist item
Url
<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{checklist_id}/checklistitems/{checklisitem_id}
Attributes
id (long)
Unique identifier to identify the archived checklist item
name (string)
Name of the archived checklist item
field_type (string)
Indicates the field type of the archived checklist item
cl_value (string)
The recorded value of the archived checklist item field
order (long)
Display order of the archived checklist item
updated_by (user)read only
Indicates the user who last updated the archived checklist item
More Attributes Expand all
$ curl -G <service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{checklist_id}/checklistitems/{checklisitem_id}\
-X GET\
-H "Accept: application/vnd.manageengine.sdp.v3+json"\
-H "Authorization: Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"\
-H "Content-Type: application/x-www-form-urlencoded"
// Deluge Sample script
url = "<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{checklist_id}/checklistitems/{checklisitem_id}";
headers = {"Accept":"application/vnd.manageengine.sdp.v3+json",
"Content-Type": "application/x-www-form-urlencoded",
"Authorization": "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"};
response = invokeurl
[
url: url
type: GET
headers: headers
];
info response;
#Powershell version - 5.1
$url = "<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{checklist_id}/checklistitems/{checklisitem_id}"
$headers = @{ "Accept" = "application/vnd.manageengine.sdp.v3+json"
"Authorization" = "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"
"Content-Type" = "application/x-www-form-urlencoded"}
$response = Invoke-RestMethod -Uri $url -Method get -Headers $headers
$response
#Python version - 3.8
#This script requires requests module installed in python.
from urllib.error import HTTPError
from urllib.parse import urlencode
from urllib.request import urlopen,Request
url = "<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{checklist_id}/checklistitems/{checklisitem_id}"
headers ={"Accept": "application/vnd.manageengine.sdp.v3+json",
"Authorization" : "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx",
"Content-Type" : "application/x-www-form-urlencoded"}
httprequest = Request(url, headers=headers)
try:
with urlopen(httprequest) as response:
print(response.read().decode())
except HTTPError as e:
print(e.read().decode())
{
"response_status": {
"status_code": 2000,
"status": "success"
},
"arc_checklist_item": {
"updated_on": null,
"is_enabled": true,
"cl_value": null,
"name": "Test network connectivity",
"updated_by": null,
"id": "3000000076431",
"field_type": "Decision Box",
"is_completed": false,
"order": "1"
}
}
Get List Arc Checklist Item
This operation helps to get the list of all archived checklist items under an archived checklist
Url
<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{arc_checklist_id}/checklistitems
Attributes
id (long)
Unique identifier to identify the archived checklist item
name (string)
Name of the archived checklist item
field_type (string)
Indicates the field type of the archived checklist item
cl_value (string)
The recorded value of the archived checklist item field
order (long)
Display order of the archived checklist item
updated_by (user)read only
Indicates the user who last updated the archived checklist item
More Attributes Expand all
$ curl -G <service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{arc_checklist_id}/checklistitems\
-X GET\
-H "Accept: application/vnd.manageengine.sdp.v3+json"\
-H "Authorization: Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"\
-H "Content-Type: application/x-www-form-urlencoded"\
--data-urlencode input_data='{}'
// Deluge Sample script
url = "<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{arc_checklist_id}/checklistitems";
headers = {"Accept":"application/vnd.manageengine.sdp.v3+json",
"Content-Type": "application/x-www-form-urlencoded",
"Authorization": "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"};
input_data = {};
params = {"input_data":input_data};
response = invokeurl
[
url: url
type: GET
parameters:params
headers: headers
];
info response;
#Powershell version - 5.1
$url = "<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{arc_checklist_id}/checklistitems"
$headers = @{ "Accept" = "application/vnd.manageengine.sdp.v3+json"
"Authorization" = "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"
"Content-Type" = "application/x-www-form-urlencoded"}
$input_data = @'{}'@
$data = @{ 'input_data' = $input_data}
$response = Invoke-RestMethod -Uri $url -Method get -Body $data -Headers $headers
$response
#Python version - 3.8
#This script requires requests module installed in python.
from urllib.error import HTTPError
from urllib.parse import urlencode
from urllib.request import urlopen,Request
url = "<service domain|custom domain>/app/<portal>/api/v3/archive_requests/{archive_requests_id}/checklists/{arc_checklist_id}/checklistitems"
headers ={"Accept": "application/vnd.manageengine.sdp.v3+json",
"Authorization" : "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx",
"Content-Type" : "application/x-www-form-urlencoded"}
input_data = '''{}'''
url += "?" + urlencode({"input_data":input_data})
httprequest = Request(url, headers=headers)
try:
with urlopen(httprequest) as response:
print(response.read().decode())
except HTTPError as e:
print(e.read().decode())
{
"response_status": [
{
"status_code": 2000,
"status": "success"
}
],
"checklistitems": [
{
"updated_on": null,
"is_enabled": true,
"cl_value": null,
"name": "Test network connectivity",
"updated_by": null,
"id": "3000000076431",
"field_type": "Decision Box",
"is_completed": false,
"order": "1"
},
{
"updated_on": null,
"is_enabled": true,
"cl_value": null,
"name": "Update system software",
"updated_by": null,
"id": "3000000076433",
"field_type": "Single Line",
"is_completed": false,
"order": "2"
},
{
"updated_on": null,
"is_enabled": true,
"cl_value": null,
"name": "Disk space usage %",
"updated_by": null,
"id": "3000000076435",
"field_type": "Numeric Field",
"is_completed": false,
"order": "3"
},
{
"updated_on": null,
"is_enabled": true,
"cl_value": null,
"name": "Monitor CPU and memory usage %",
"updated_by": null,
"id": "3000000076437",
"field_type": "Radio Button",
"is_completed": false,
"order": "4"
}
],
"list_info": {
"has_more_rows": false,
"row_count": 4
}
}