- 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
Add Trainer API
This API is used to add a new trainer in LMS.
Request URL:
https://people.zoho.com/api/v1/trainers?erecnosList=<erecnosList>
Scope:
ZOHOPEOPLE.training.ALL
OR
ZOHOPEOPLE.training.CREATE
Possible Operation Types:
ALL - Complete access to data
CREATE - Only to create data
Method:
PUT
Request Parameters
Parameters | Values Allowed | Default Value | Description |
*erecnosList | <parameters in JSONArray> | <Mandatory> | Specify the employee erecno's |
*mandatory parameters
Error Codes and Descriptions
Status Codes | Description |
---|---|
400 | Invalid parameter value/input parameter missing |
403 | Sorry! You are not authorized to do this operation |
404 | Not found |
422 | Maximum limit exceeded |
500 | Sorry! Server error occured |
View complete list of LMS API error codes
Threshold Limit: 30 requests | Lock period: 5 minutes
Threshold Limit - Number of API calls allowed within a minute.
Lock Period - Wait time before consecutive API requests.
Request
Copiedimport okhttp3.*;
public class Main {
public static void main(String[] args) throws Exception {
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{ \"erecnosList\": [\"478346000011341865\", \"478346000000248077\"] }");
Request request = new Request.Builder()
.url("https://people.zoho.com/api/v1/trainers")
.put(body)
.addHeader("Authorization", "Zoho-oauthtoken YOUR_ACCESS_TOKEN")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
}
Copiedconst url = "https://people.zoho.com/api/v1/trainers";
const body = JSON.stringify({
erecnosList: ["478346000011341865", "478346000000248077"]
});
fetch(url, {
method: "PUT",
headers: {
"Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
},
body: body
})
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.error("Error:", error));
Copiedcurl -X PUT "https://people.zoho.com/api/v1/trainers" \
-H "Authorization: Zoho-oauthtoken YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-d '{"erecnosList":["478346000011341865","478346000000248077"]}'
Copiedurl = "https://people.zoho.com/api/v1/trainers";
headers = map();
headers.put("Authorization", "Zoho-oauthtoken YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/json");
body = map();
body.put("erecnosList", list("478346000011341865", "478346000000248077"));
response = invokeurl
[
url : url
type : PUT
parameters: body
headers: headers
];
info response;
Copiedimport requests
url = "https://people.zoho.com/api/v1/trainers"
headers = {
"Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN",
"Content-Type": "application/json"
}
payload = {
"erecnosList": ["478346000011341865", "478346000000248077"]
}
response = requests.put(url, headers=headers, json=payload)
print(response.text)
Show full
Show less
Header
CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf
Response
Copied{
"trainers": [
{
"erecno": "219225000000036453",
"displayName": "Henry",
"employeeId": "0001",
"displayPictureURL": "https://contacts.zoho.com/file?ID=2232855&fs=thumb",
"trainerId": "219225000000185019"
}
],
"code": "200",
"message": "success"
}
© 2025, Zoho Corporation Pvt. Ltd. All Rights Reserved.