Skip to content

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

id (long)
Unique identifier to identify the archived checklist item

Example

234759602834500

name (string)
Name of the archived checklist item

name (string)
Name of the archived checklist item

Example

Sample Content

field_type (string)
Indicates the field type of the archived checklist item

field_type (string)
The type of field this archived item represents

Example

Sample Content

cl_value (string)
The recorded value of the archived checklist item field

cl_value (string)
The value entered for the archived checklist item

Example

Sample Content

order (long)
Display order of the archived checklist item

order (long)
Numeric value determining the position of the item in the archived checklist

Example

234759602834500

updated_by (user)read only
Indicates the user who last updated the archived checklist item

updated_by (user)
Contains the details of the user who last updated the archived checklist item

Example

{
  "updated_by": {
    "email_id": "admin@zmail.com",
    "is_technician": true,
    "last_name": "",
    "user_scope": "internal_user",
    "name": "admin",
    "id": "100000000000034001",
    "photo_url": "test-photo_url",
    "is_vip_user": false,
    "first_name": "admin"
  }
}

More Attributes Expand all

updated_on (datetime)read only

Indicates the time at which the archived checklist item was last updated

updated_on (datetime)
The timestamp when the archived checklist item was last updated

Example

{"updated_on":{"display_value":"Feb 25, 2026 11:00 AM","value":"1772100000000"}}

is_completed (boolean)read only

Indicates whether the archived checklist item was completed

is_completed (boolean)
Boolean flag indicating the completion status of the archived checklist item

is_enabled (boolean)read only

Indicates whether the archived checklist item was enabled

is_enabled (boolean)
Boolean flag indicating if the archived checklist item was active

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

id (long)
Unique identifier to identify the archived checklist item

Example

234759602834500

name (string)
Name of the archived checklist item

name (string)
Name of the archived checklist item

Example

Sample Content

field_type (string)
Indicates the field type of the archived checklist item

field_type (string)
The type of field this archived item represents

Example

Sample Content

cl_value (string)
The recorded value of the archived checklist item field

cl_value (string)
The value entered for the archived checklist item

Example

Sample Content

order (long)
Display order of the archived checklist item

order (long)
Numeric value determining the position of the item in the archived checklist

Example

234759602834500

updated_by (user)read only
Indicates the user who last updated the archived checklist item

updated_by (user)
Contains the details of the user who last updated the archived checklist item

Example

{
  "updated_by": {
    "email_id": "admin@zmail.com",
    "is_technician": true,
    "last_name": "",
    "user_scope": "internal_user",
    "name": "admin",
    "id": "100000000000034001",
    "photo_url": "test-photo_url",
    "is_vip_user": false,
    "first_name": "admin"
  }
}

More Attributes Expand all

updated_on (datetime)read only

Indicates the time at which the archived checklist item was last updated

updated_on (datetime)
The timestamp when the archived checklist item was last updated

Example

{"updated_on":{"display_value":"Feb 25, 2026 11:00 AM","value":"1772100000000"}}

is_completed (boolean)read only

Indicates whether the archived checklist item was completed

is_completed (boolean)
Boolean flag indicating the completion status of the archived checklist item

is_enabled (boolean)read only

Indicates whether the archived checklist item was enabled

is_enabled (boolean)
Boolean flag indicating if the archived checklist item was active

$ 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

id (long)
Unique identifier to identify the archived checklist item

Example

234759602834500

name (string)
Name of the archived checklist item

name (string)
Name of the archived checklist item

Example

Sample Content

field_type (string)
Indicates the field type of the archived checklist item

field_type (string)
The type of field this archived item represents

Example

Sample Content

cl_value (string)
The recorded value of the archived checklist item field

cl_value (string)
The value entered for the archived checklist item

Example

Sample Content

order (long)
Display order of the archived checklist item

order (long)
Numeric value determining the position of the item in the archived checklist

Example

234759602834500

updated_by (user)read only
Indicates the user who last updated the archived checklist item

updated_by (user)
Contains the details of the user who last updated the archived checklist item

Example

{
  "updated_by": {
    "email_id": "admin@zmail.com",
    "is_technician": true,
    "last_name": "",
    "user_scope": "internal_user",
    "name": "admin",
    "id": "100000000000034001",
    "photo_url": "test-photo_url",
    "is_vip_user": false,
    "first_name": "admin"
  }
}

More Attributes Expand all

updated_on (datetime)read only

Indicates the time at which the archived checklist item was last updated

updated_on (datetime)
The timestamp when the archived checklist item was last updated

Example

{"updated_on":{"display_value":"Feb 25, 2026 11:00 AM","value":"1772100000000"}}

is_completed (boolean)read only

Indicates whether the archived checklist item was completed

is_completed (boolean)
Boolean flag indicating the completion status of the archived checklist item

is_enabled (boolean)read only

Indicates whether the archived checklist item was enabled

is_enabled (boolean)
Boolean flag indicating if the archived checklist item was active

$ 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
  }
}