Skip to content

Problem Worklog

This API helps you to track and record the work done by a team member.

Attributes

id (long)
Indicates the unique ID of the worklog

id (long)
Numerical digits which are considered to have larger values.

Example

234759602834500

owner (user)
Indicates the owner for the worklog

owner (user)
Indicates the owner for the worklog

Example

{
  "owner": {
    "email_id": "john@zylker.com",
    "name": "John",
    "id": "100000000000220612"
  }
}

description (html)
Contains the description of the worklog

description (html)
HTML is a text area where html elements can be used.

Example

<b>The content to be displayed</b>

start_time (datetime)
Contains start date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

start_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

end_time (datetime)
Contains the end date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format.

end_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

recorded_time (datetime)
Contains the date and time of creation of the Worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

recorded_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

More Attributes Expand all

other_charge (double)

Indicates the extra charges other than the technician charges

other_charge (double)
These are numbers that can include contains decimals.

Example

23.08

tech_charge (double)

Indicates the technician charges related to the worklog

tech_charge (double)
These are numbers that can include contains decimals.

Example

23.08

include_nonoperational_hours (boolean)

Indicates whether to include non-operational hours or not

include_nonoperational_hours (boolean)
Boolean value which can have two possible values. The values are true and false.

mark_first_response (boolean)

Indicates whether to mark response date of a Request/ticket while adding worklog for that request/ticket

mark_first_response (boolean)
Boolean value which can have two possible values. The values are true and false.

worklog_type (worklog_type)

Indicates the different modes of technician’s work

worklog_type (worklog_type)
Indicates the different modes of technician’s work

Example

{
  "worklog_type": {
    "name": "test worklog_type",
    "id": "13000000002206123"
  }
}

created_by (user)read only

Indicates the user who created the worklog

created_by (user)

total_charge (double)read only

Indicates the total charges related to the worklog

total_charge (double)
These are numbers that can include contains decimals.

Example

23.08

time_spent (timediff)

Indicates the total time spent in the worklog in terms of hours, minutes and seconds

time_spent (timediff)

Add Problem Worklog

This operation helps you to add a problem worklog.

Mandatory Fields :- [“owner”]

Url

/api/v3/problems/{problem_id}/worklogs

Attributes

id (long)
Indicates the unique ID of the worklog

id (long)
Numerical digits which are considered to have larger values.

Example

234759602834500

owner (user)
Indicates the owner for the worklog

owner (user)
Indicates the owner for the worklog

Example

{
  "owner": {
    "email_id": "john@zylker.com",
    "name": "John",
    "id": "100000000000220612"
  }
}

description (html)
Contains the description of the worklog

description (html)
HTML is a text area where html elements can be used.

Example

<b>The content to be displayed</b>

start_time (datetime)
Contains start date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

start_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

end_time (datetime)
Contains the end date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format.

end_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

recorded_time (datetime)
Contains the date and time of creation of the Worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

recorded_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

More Attributes Expand all

other_charge (double)

Indicates the extra charges other than the technician charges

other_charge (double)
These are numbers that can include contains decimals.

Example

23.08

tech_charge (double)

Indicates the technician charges related to the worklog

tech_charge (double)
These are numbers that can include contains decimals.

Example

23.08

include_nonoperational_hours (boolean)

Indicates whether to include non-operational hours or not

include_nonoperational_hours (boolean)
Boolean value which can have two possible values. The values are true and false.

mark_first_response (boolean)

Indicates whether to mark response date of a Request/ticket while adding worklog for that request/ticket

mark_first_response (boolean)
Boolean value which can have two possible values. The values are true and false.

worklog_type (worklog_type)

Indicates the different modes of technician’s work

worklog_type (worklog_type)
Indicates the different modes of technician’s work

Example

{
  "worklog_type": {
    "name": "test worklog_type",
    "id": "13000000002206123"
  }
}

created_by (user)read only

Indicates the user who created the worklog

created_by (user)

total_charge (double)read only

Indicates the total charges related to the worklog

total_charge (double)
These are numbers that can include contains decimals.

Example

23.08

time_spent (timediff)

Indicates the total time spent in the worklog in terms of hours, minutes and seconds

time_spent (timediff)

$ curl <url>//api/v3/problems/{problem_id}/worklogs\
      -X POST\
      -H "Accept: application/vnd.manageengine.sdp.v3+json"\
      -H "Authorization: Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"\
      -H "Content-Type: application/x-www-form-urlencoded"\
      -d input_data='{
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Add Worklog</div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675331928311"
        },
        "time_spent": {
            "hours": "23",
            "minutes": "59"
        },
        "tech_charge": "1200",
        "other_charge": "200",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
}'
// Deluge Sample script
url = "<url>//api/v3/problems/{problem_id}/worklogs";
headers = {"Accept":"application/vnd.manageengine.sdp.v3+json",
           "Content-Type": "application/x-www-form-urlencoded",
           "Authorization": "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"};
input_data = {
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Add Worklog</div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675331928311"
        },
        "time_spent": {
            "hours": "23",
            "minutes": "59"
        },
        "tech_charge": "1200",
        "other_charge": "200",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
};
params = {"input_data": input_data};
response = invokeurl
[
    url: url
    type: POST
    parameters: params
    headers: headers
];
info response;
#Powershell version - 5.1
$url = "<url>//api/v3/problems/{problem_id}/worklogs"
$headers = @{ "Accept" = "application/vnd.manageengine.sdp.v3+json"
    "Authorization" = "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"
    "Content-Type" = "application/x-www-form-urlencoded"}
$input_data = @'
{
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Add Worklog</div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675331928311"
        },
        "time_spent": {
            "hours": "23",
            "minutes": "59"
        },
        "tech_charge": "1200",
        "other_charge": "200",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
}
'@
$data = @{ 'input_data' = $input_data}
$response = Invoke-RestMethod -Uri $url -Method post -Body $data -Headers $headers
$response
#Python version - 3.10
from urllib.error import HTTPError
from urllib.parse import urlencode
from urllib.request import urlopen,Request

url = "<url>//api/v3/problems/{problem_id}/worklogs"
headers ={"Accept": "application/vnd.manageengine.sdp.v3+json", 
          "Authorization" : "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx", 
          "Content-Type" : "application/x-www-form-urlencoded"}
input_data = '''{
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Add Worklog</div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675331928311"
        },
        "time_spent": {
            "hours": "23",
            "minutes": "59"
        },
        "tech_charge": "1200",
        "other_charge": "200",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
}'''
data = urlencode({"input_data":input_data}).encode()
httprequest = Request(url, headers=headers,data=data, method="POST")
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"
    },
    "worklog": {
        "owner": {
            "email_id": "john@zylker.com",
            "is_technician": true,
            "sms_mail": null,
            "mobile": null,
            "last_name": null,
            "user_scope": "internal_user",
            "sms_mail_id": null,
            "cost_per_hour": "0.0",
            "site": {
                "deleted": false,
                "name": "Base Site",
                "id": "4149000001242001",
                "is_default": true
            },
            "phone": null,
            "employee_id": null,
            "name": "John",
            "id": "4149000000871029",
            "photo_url": "https://contacts.localzoho.com/file?sample",
            "is_vip_user": false,
            "department": null,
            "first_name": "John",
            "job_title": null
        },
        "include_nonoperational_hours": true,
        "end_time": {
            "display_value": "Feb 2, 2023 03:28 PM",
            "value": "1675331880000"
        },
        "description": "<div>Add Worklog<\/div>",
        "other_charge": "200",
        "total_charge": "1400",
        "created_by": {
            "email_id": "john@zylker.com",
            "is_technician": true,
            "sms_mail": null,
            "mobile": null,
            "last_name": null,
            "user_scope": "internal_user",
            "sms_mail_id": null,
            "site": {
                "deleted": false,
                "name": "Base Site",
                "id": "4149000001242001",
                "is_default": true
            },
            "phone": null,
            "employee_id": null,
            "name": "John",
            "id": "4149000000871029",
            "photo_url": "https://contacts.localzoho.com/file?sample",
            "is_vip_user": false,
            "department": null,
            "first_name": "John",
            "job_title": null
        },
        "recorded_time": {
            "display_value": "Feb 2, 2023 03:29 PM",
            "value": "1675331967068"
        },
        "time_spent": {
            "hours": "23",
            "minutes": "59",
            "value": "86340000"
        },
        "tech_charge": "1200",
        "start_time": {
            "display_value": "Feb 1, 2023 03:29 PM",
            "value": "1675245540000"
        },
        "worklog_type": null,
        "id": "4149000001305099"
    }
}

Edit Problem Worklog

This operation helps you to update a problem worklog.

Url

/api/v3/problems/{problem_id}/worklogs/{worklog_id}

Attributes

id (long)
Indicates the unique ID of the worklog

id (long)
Numerical digits which are considered to have larger values.

Example

234759602834500

owner (user)
Indicates the owner for the worklog

owner (user)
Indicates the owner for the worklog

Example

{
  "owner": {
    "email_id": "john@zylker.com",
    "name": "John",
    "id": "100000000000220612"
  }
}

description (html)
Contains the description of the worklog

description (html)
HTML is a text area where html elements can be used.

Example

<b>The content to be displayed</b>

start_time (datetime)
Contains start date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

start_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

end_time (datetime)
Contains the end date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format.

end_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

recorded_time (datetime)
Contains the date and time of creation of the Worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

recorded_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

More Attributes Expand all

other_charge (double)

Indicates the extra charges other than the technician charges

other_charge (double)
These are numbers that can include contains decimals.

Example

23.08

tech_charge (double)

Indicates the technician charges related to the worklog

tech_charge (double)
These are numbers that can include contains decimals.

Example

23.08

include_nonoperational_hours (boolean)

Indicates whether to include non-operational hours or not

include_nonoperational_hours (boolean)
Boolean value which can have two possible values. The values are true and false.

mark_first_response (boolean)

Indicates whether to mark response date of a Request/ticket while adding worklog for that request/ticket

mark_first_response (boolean)
Boolean value which can have two possible values. The values are true and false.

worklog_type (worklog_type)

Indicates the different modes of technician’s work

worklog_type (worklog_type)
Indicates the different modes of technician’s work

Example

{
  "worklog_type": {
    "name": "test worklog_type",
    "id": "13000000002206123"
  }
}

created_by (user)read only

Indicates the user who created the worklog

created_by (user)

total_charge (double)read only

Indicates the total charges related to the worklog

total_charge (double)
These are numbers that can include contains decimals.

Example

23.08

time_spent (timediff)

Indicates the total time spent in the worklog in terms of hours, minutes and seconds

time_spent (timediff)

$ curl <url>//api/v3/problems/{problem_id}/worklogs/{worklog_id}\
      -X PUT\ 
      -H "Accept: application/vnd.manageengine.sdp.v3+json"\
      -H "Authorization: Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"\
      -H "Content-Type: application/x-www-form-urlencoded"\
      -d input_data='{
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Edit Worklog<br></div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675421880000"
        },
        "time_spent": {
            "hours": "48",
            "minutes": "59"
        },
        "tech_charge": "2000",
        "other_charge": "500",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
}'
// Deluge Sample script
url = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_id}";
headers = {"Accept":"application/vnd.manageengine.sdp.v3+json",
           "Content-Type": "application/x-www-form-urlencoded",
           "Authorization": "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx"};
input_data = {
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Edit Worklog<br></div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675421880000"
        },
        "time_spent": {
            "hours": "48",
            "minutes": "59"
        },
        "tech_charge": "2000",
        "other_charge": "500",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
};
params = {"input_data": input_data};
response = invokeurl
[
    url: url
    type: PUT
    parameters: params
    headers: headers
];
info response;
#Powershell version - 5.1
$url = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_id}"
$headers = @{"Accept": "application/vnd.manageengine.sdp.v3+json", 
          "Authorization" : "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx", 
          "Content-Type" : "application/x-www-form-urlencoded"}
$input_data = @'
{
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Edit Worklog<br></div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675421880000"
        },
        "time_spent": {
            "hours": "48",
            "minutes": "59"
        },
        "tech_charge": "2000",
        "other_charge": "500",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
}
'@
$data = @{ 'input_data' = $input_data}
$response = Invoke-RestMethod -Uri $url -Method put -Body $data -Headers $headers
$response
#Python version - 3.10
from urllib.error import HTTPError
from urllib.parse import urlencode
from urllib.request import urlopen,Request

url = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_id}"
headers ={"Accept": "application/vnd.manageengine.sdp.v3+json", 
          "Authorization" : "Zoho-oauthtoken 1000.7xxx98976ab0xxxxxx19901e7551be57.bxxxx921ed64c04f79622bebcfxxxxxx", 
          "Content-Type" : "application/x-www-form-urlencoded"}
input_data = '''{
    "worklog": {
        "owner": {
            "id": "4149000000871029"
        },
        "description": "<div>Edit Worklog<br></div>",
        "start_time": {
            "value": "1675245540000"
        },
        "end_time": {
            "value": "1675421880000"
        },
        "time_spent": {
            "hours": "48",
            "minutes": "59"
        },
        "tech_charge": "2000",
        "other_charge": "500",
        "worklog_type": null,
        "include_nonoperational_hours": true,
        "mark_first_response": false
    }
}'''
data = urlencode({"input_data":input_data}).encode()
httprequest = Request(url, headers=headers,data=data, method="PUT")
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"
    },
    "worklog": {
        "owner": {
            "email_id": "john@zylker.com",
            "is_technician": true,
            "sms_mail": null,
            "mobile": null,
            "last_name": null,
            "user_scope": "internal_user",
            "sms_mail_id": null,
            "cost_per_hour": "0.0",
            "site": {
                "deleted": false,
                "name": "Base Site",
                "id": "4149000001242001",
                "is_default": true
            },
            "phone": null,
            "employee_id": null,
            "name": "John",
            "id": "4149000000871029",
            "photo_url": "https://contacts.localzoho.com/file?sample",
            "is_vip_user": false,
            "department": null,
            "first_name": "John",
            "job_title": null
        },
        "include_nonoperational_hours": true,
        "end_time": {
            "display_value": "Feb 3, 2023 04:28 PM",
            "value": "1675421880000"
        },
        "description": "<div>Edit Worklog<\/div>",
        "other_charge": "500",
        "total_charge": "2500",
        "created_by": {
            "email_id": "john@zylker.com",
            "is_technician": true,
            "sms_mail": null,
            "mobile": null,
            "last_name": null,
            "user_scope": "internal_user",
            "sms_mail_id": null,
            "site": {
                "deleted": false,
                "name": "Base Site",
                "id": "4149000001242001",
                "is_default": true
            },
            "phone": null,
            "employee_id": null,
            "name": "John",
            "id": "4149000000871029",
            "photo_url": "https://contacts.localzoho.com/file?sample",
            "is_vip_user": false,
            "department": null,
            "first_name": "John",
            "job_title": null
        },
        "recorded_time": {
            "display_value": "Feb 2, 2023 03:29 PM",
            "value": "1675331967068"
        },
        "time_spent": {
            "hours": "48",
            "minutes": "59",
            "value": "176340000"
        },
        "tech_charge": "2000",
        "start_time": {
            "display_value": "Feb 1, 2023 03:29 PM",
            "value": "1675245540000"
        },
        "worklog_type": null,
        "id": "4149000001305099"
    }
}

Get Problem Worklog

This operation helps you to get a problem worklog.

Url

/api/v3/problems/{problem_id}/worklogs/{worklog_id}

Attributes

id (long)
Indicates the unique ID of the worklog

id (long)
Numerical digits which are considered to have larger values.

Example

234759602834500

owner (user)
Indicates the owner for the worklog

owner (user)
Indicates the owner for the worklog

Example

{
  "owner": {
    "email_id": "john@zylker.com",
    "name": "John",
    "id": "100000000000220612"
  }
}

description (html)
Contains the description of the worklog

description (html)
HTML is a text area where html elements can be used.

Example

<b>The content to be displayed</b>

start_time (datetime)
Contains start date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

start_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

end_time (datetime)
Contains the end date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format.

end_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

recorded_time (datetime)
Contains the date and time of creation of the Worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

recorded_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

More Attributes Expand all

other_charge (double)

Indicates the extra charges other than the technician charges

other_charge (double)
These are numbers that can include contains decimals.

Example

23.08

tech_charge (double)

Indicates the technician charges related to the worklog

tech_charge (double)
These are numbers that can include contains decimals.

Example

23.08

include_nonoperational_hours (boolean)

Indicates whether to include non-operational hours or not

include_nonoperational_hours (boolean)
Boolean value which can have two possible values. The values are true and false.

mark_first_response (boolean)

Indicates whether to mark response date of a Request/ticket while adding worklog for that request/ticket

mark_first_response (boolean)
Boolean value which can have two possible values. The values are true and false.

worklog_type (worklog_type)

Indicates the different modes of technician’s work

worklog_type (worklog_type)
Indicates the different modes of technician’s work

Example

{
  "worklog_type": {
    "name": "test worklog_type",
    "id": "13000000002206123"
  }
}

created_by (user)read only

Indicates the user who created the worklog

created_by (user)

total_charge (double)read only

Indicates the total charges related to the worklog

total_charge (double)
These are numbers that can include contains decimals.

Example

23.08

time_spent (timediff)

Indicates the total time spent in the worklog in terms of hours, minutes and seconds

time_spent (timediff)

$ curl -G <url>//api/v3/problems/{problem_id}/worklogs/{worklog_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 = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_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 = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_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 = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_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"
    },
    "worklog": {
        "owner": {
            "email_id": "john@zylker.com",
            "is_technician": true,
            "sms_mail": null,
            "mobile": null,
            "last_name": null,
            "user_scope": "internal_user",
            "sms_mail_id": null,
            "cost_per_hour": "0.0",
            "site": {
                "deleted": false,
                "name": "Base Site",
                "id": "4149000001242001",
                "is_default": true
            },
            "phone": null,
            "employee_id": null,
            "name": "John",
            "id": "4149000000871029",
            "photo_url": "https://contacts.localzoho.com/file?sample",
            "is_vip_user": false,
            "department": null,
            "first_name": "John",
            "job_title": null
        },
        "include_nonoperational_hours": true,
        "end_time": {
            "display_value": "Feb 3, 2023 04:28 PM",
            "value": "1675421880000"
        },
        "description": "<div>Edit Worklog<\/div>",
        "other_charge": "500",
        "total_charge": "2500",
        "created_by": {
            "email_id": "john@zylker.com",
            "is_technician": true,
            "sms_mail": null,
            "mobile": null,
            "last_name": null,
            "user_scope": "internal_user",
            "sms_mail_id": null,
            "site": {
                "deleted": false,
                "name": "Base Site",
                "id": "4149000001242001",
                "is_default": true
            },
            "phone": null,
            "employee_id": null,
            "name": "John",
            "id": "4149000000871029",
            "photo_url": "https://contacts.localzoho.com/file?sample",
            "is_vip_user": false,
            "department": null,
            "first_name": "John",
            "job_title": null
        },
        "recorded_time": {
            "display_value": "Feb 2, 2023 03:29 PM",
            "value": "1675331967068"
        },
        "time_spent": {
            "hours": "48",
            "minutes": "59",
            "value": "176340000"
        },
        "tech_charge": "2000",
        "start_time": {
            "display_value": "Feb 1, 2023 03:29 PM",
            "value": "1675245540000"
        },
        "worklog_type": null,
        "id": "4149000001305099"
    }
}

Get List Problem Worklog

This operation helps you to Get all problem worklogs.

Url

/api/v3/problem/{problem_id}/worklogs

Attributes

id (long)
Indicates the unique ID of the worklog

id (long)
Numerical digits which are considered to have larger values.

Example

234759602834500

owner (user)
Indicates the owner for the worklog

owner (user)
Indicates the owner for the worklog

Example

{
  "owner": {
    "email_id": "john@zylker.com",
    "name": "John",
    "id": "100000000000220612"
  }
}

description (html)
Contains the description of the worklog

description (html)
HTML is a text area where html elements can be used.

Example

<b>The content to be displayed</b>

start_time (datetime)
Contains start date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

start_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

end_time (datetime)
Contains the end date and time of the worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format.

end_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

recorded_time (datetime)
Contains the date and time of creation of the Worklog as a JSON Object and has the ‘value’ in milliseconds and ‘display_value’ in the standard date format

recorded_time (datetime)
Represents a date/time as a JSON Object. Would contain the value and the display_value attributes.

value : The time in long format (No. of milliseconds from Jan 1, 1970 ).

display_value : The time in a readable form in a format as personalized by the user. If not personalized, default format would be used.

More Attributes Expand all

other_charge (double)

Indicates the extra charges other than the technician charges

other_charge (double)
These are numbers that can include contains decimals.

Example

23.08

tech_charge (double)

Indicates the technician charges related to the worklog

tech_charge (double)
These are numbers that can include contains decimals.

Example

23.08

include_nonoperational_hours (boolean)

Indicates whether to include non-operational hours or not

include_nonoperational_hours (boolean)
Boolean value which can have two possible values. The values are true and false.

mark_first_response (boolean)

Indicates whether to mark response date of a Request/ticket while adding worklog for that request/ticket

mark_first_response (boolean)
Boolean value which can have two possible values. The values are true and false.

worklog_type (worklog_type)

Indicates the different modes of technician’s work

worklog_type (worklog_type)
Indicates the different modes of technician’s work

Example

{
  "worklog_type": {
    "name": "test worklog_type",
    "id": "13000000002206123"
  }
}

created_by (user)read only

Indicates the user who created the worklog

created_by (user)

total_charge (double)read only

Indicates the total charges related to the worklog

total_charge (double)
These are numbers that can include contains decimals.

Example

23.08

time_spent (timediff)

Indicates the total time spent in the worklog in terms of hours, minutes and seconds

time_spent (timediff)

$ curl -G <url>//api/v3/problem/{problem_id}/worklogs\
      -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 = "<url>//api/v3/problem/{problem_id}/worklogs";
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 = "<url>//api/v3/problem/{problem_id}/worklogs"
$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 = "<url>//api/v3/problem/{problem_id}/worklogs"
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"
      }
    ],
    "list_info": {
      "has_more_rows": false,
      "row_count": 1
    },
    "worklogs": [
      {
        "owner": {
          "email_id": "john@zylker.com",
          "is_technician": true,
          "sms_mail": null,
          "mobile": null,
          "last_name": null,
          "user_scope": "internal_user",
          "sms_mail_id": null,
          "site": {
            "deleted": false,
            "name": "Base Site",
            "id": "4149000001242001",
            "is_default": true
          },
          "phone": null,
          "employee_id": null,
          "name": "John",
          "id": "4149000000871029",
          "photo_url": "https://contacts.localzoho.com/file?sample",
          "is_vip_user": false,
          "department": null,
          "first_name": "John",
          "job_title": null
        },
        "include_nonoperational_hours": true,
        "end_time": {
          "display_value": "Feb 3, 2023 04:28 PM",
          "value": "1675421880000"
        },
        "description": "Edit Worklog",
        "other_charge": "500",
        "total_charge": "2500",
        "created_by": {
          "email_id": "john@zylker.com",
          "is_technician": true,
          "sms_mail": null,
          "mobile": null,
          "last_name": null,
          "user_scope": "internal_user",
          "sms_mail_id": null,
          "site": {
            "deleted": false,
            "name": "Base Site",
            "id": "4149000001242001",
            "is_default": true
          },
          "phone": null,
          "employee_id": null,
          "name": "John",
          "id": "4149000000871029",
          "photo_url": "https://contacts.localzoho.com/file?sample",
          "is_vip_user": false,
          "department": null,
          "first_name": "John",
          "job_title": null
        },
        "recorded_time": {
          "display_value": "Feb 2, 2023 03:29 PM",
          "value": "1675331967068"
        },
        "time_spent": {
          "hours": "48",
          "minutes": "59",
          "value": "176340000"
        },
        "tech_charge": "2000",
        "start_time": {
          "display_value": "Feb 1, 2023 03:29 PM",
          "value": "1675245540000"
        },
        "worklog_type": null,
        "id": "4149000001305099"
      }
    ]
}

Delete Problem Worklog

This operation helps you to delete a problem worklog.

Url

/api/v3/problems/{problem_id}/worklogs/{worklog_id}

$ curl <url>//api/v3/problems/{problem_id}/worklogs/{worklog_id}\
      -X DELETE\ 
      -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 = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_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: DELETE
    headers: headers
];
info response;
#Powershell version - 5.1
$url = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_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 delete -Headers $headers
$response
#Python version - 3.10
from urllib.error import HTTPError
from urllib.request import urlopen,Request

url = "<url>//api/v3/problems/{problem_id}/worklogs/{worklog_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,method="DELETE")
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"
  }
}