- Overview
- Authentication
- Organization
- API Limits
- Forms API
- Cases API
- Timesheet API
- Onboarding API
- Announcements API
- Leave API
- Attendance API
- Compensation API
- GETFetch Components API
- GETFetch Components by ID API
- GETFetch Salary Components API
- GETFetch Packages API
- GETFetch Package by ID API
- GETFetch Package Components API
- GETFetch Currencies API
- GETFetch Currency by ID
- GETFetch Revisions API
- GETFetch Revisions by ERECNO API
- GETFetch Revision Letters by ERECNO API
- GETPreview Revision Letter by Revision ID API
- GETDownload Revision Letter by Revision ID API
- GETFetch My Compensation API
- GETFetch Reasons API
- GETFetch Settings API
- PUTCancel Revision API
- GETFetch Salary API
- GETFetch Single Employee Salary API
- POSTAdd Salary API
- PUTUpdate Salary API
- Compensation API Error Codes
- Record Count API
- LMS API
- Courses API
- Pre Learning Activities API
- Post Learning Activities API
- Course Action API
- Course Learner API
- Batch API
- Batch Scheduler API
- Batch Action API
- Module API
- File API
- Content API
- Link API
- Session API
- Offline Test API
- Online Test API
- Assignment API
- Settings API
- Trainer API
- Rooms API
- Categories API
- LMS Api Error Codes
- Files API
- View API
- Standalone Function
- Status Codes
- Error Codes API
- HTTP Request Methods
Modifying Jobs API
This API is used to modify job
Request URL:
https://people.zoho.com/people/api/forms/<inputType>/<formLinkName>/updateRecord?recordId=<recordId>&inputData=<inputData>
Header:
Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf
Scope:
ZOHOPEOPLE.forms.ALL
OR
ZOHOPEOPLE.forms.UPDATE
Possible Operation Types:
ALL - Complete access to data
UPDATE - Only to modify data
Request parameter:
Parameter | Description |
*formLinkName | Specify the formLinkName as "P_TimesheetJob" |
*inputType | Specify the inputType as either "xml" or "json" |
*recordId | Specify the job ID |
*inputData | XML input: <Request><Record><field name="LabelName1">value1</field><field name="LabelName2">value2</field><field name="LabelName3">value3</field></Record></Request> JSON input:{LabelName1:'value1',LabelName2:'value2',LabelName3:'value3'} |
NOTE:
To assign job to all users mention as 'All' for "Assignees' in the inputData.
Sample Request
Copiedhttps://people.zoho.com/people/api/forms/json/P_TimesheetJob/updateRecord?recordId=469505000000271003&inputData={"Job_Name":"Performance Analysis","StartDate":"01-Apr-2019","EndDate":"30-Apr-2019","Project":"469505000000267333","Assignees":"469505000000133005;469505000000133275",
"AssigneeHours":"20;20","AssigneeRate":"100;100","departmentIds":"469505000000133001"}
Copiedhttps://people.zoho.com/people/api/forms/xml/P_TimesheetJob/updateRecord?recordId=469505000000271003&inputData=<Request><Record><field name="Job_Name">Performance Analysis</field><field name="StartDate">01-Apr-2019</field><field name="EndDate">30-Apr-2019</field><field name="Project">469505000000267333</field><field name="Assignees">469505000000133005;469505000000133275</field><field name="AssigneeHours">20;20</field><field name="AssigneeRate">100;100</field><field name="departmentIds">469505000000133001</field></Record></Request>
Header
CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf
Sample Response
Copied{
"response": {
"result": {
"pkId": "469505000000271003",
"message": "Successfully Updated"
},
"message": "Data updated successfully",
"uri": "/api/forms/json/P_TimesheetJob/updateRecord",
"status": 0
}
}
Copied<?xml version=""1.0"" encoding=""UTF-8""?>
<response uri=""/api/forms/xml/P_TimesheetJob/updateRecord"">
<status>0</status>
<message>Data updated successfully</message>
<result>
<message>Successfully Updated</message>
</result>
</response>
© 2025, Zoho Corporation Pvt. Ltd. All Rights Reserved.