Delete Link API
This API is used to delete a link in modules of courses or batch in LMS.
Request URL: (Self Paced Course)
https://people.zoho.com/api/v1/courses/<courseId>/modules/<moduleId>/links/<linkId>
Request URL: (Blended Learning Course)
https://people.zoho.com/api/v1/courses/<courseId>/batches/<batchId>/modules/<moduleId>/links/<linkId>
Scope:
ZOHOPEOPLE.training.ALL
OR
ZOHOPEOPLE.training.DELETE
Possible Operation Types:
ALL - Complete access to data
DELETE - Only to delete data
Method:
DELETE
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();
Request request = new Request.Builder()
.url("https://people.zoho.com/api/v1/courses/478346000019479001/modules/478346000019544017/links/478346000019550005")
.delete()
.addHeader("Authorization", "Zoho-oauthtoken YOUR_ACCESS_TOKEN")
.build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
}
Copiedconst url = "https://people.zoho.com/api/v1/courses/478346000019479001/modules/478346000019544017/links/478346000019550005";
fetch(url, {
method: "DELETE",
headers: {
"Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN"
}
})
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.error("Error:", error));
Copiedcurl -X DELETE "https://people.zoho.com/api/v1/courses/478346000019479001/modules/478346000019544017/links/478346000019550005" \
-H "Authorization: Zoho-oauthtoken YOUR_ACCESS_TOKEN"
Copiedurl = "https://people.zoho.com/api/v1/courses/478346000019479001/modules/478346000019544017/links/478346000019550005";
headers = map();
headers.put("Authorization", "Zoho-oauthtoken YOUR_ACCESS_TOKEN");
response = invokeurl
[
url : url
type : DELETE
headers: headers
];
info response;
Copiedimport requests
url = "https://people.zoho.com/api/v1/courses/478346000019479001/modules/478346000019544017/links/478346000019550005"
headers = {
"Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN"
}
response = requests.delete(url, headers=headers)
print(response.text)
Show full
Show less
Header
CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf
Response
Copied{
"linkId": "219225000000648041",
"code": 200,
"status": "success"
}