Delete Post Learning Activity - Online Test
This API is used to delete online test that is a part of post learning activity in LMS
Request URL:
https://people.zoho.com/api/v1/courses/<courseId>/settings/postcourseactivities/onlineTests/<testId>
Header:
Authorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf
Scope:
ZOHOPEOPLE.training.ALL
OR
ZOHOPEOPLE.training.DELETE
Possible Operation Types:
ALL - Complete access to data
DELETE - Only to update 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/478346000019328001/settings/postcourseactivities/onlineTests/478346000019579015")
.delete()
.addHeader("Cookie", "CSRF_TOKEN=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zcsr_tmp=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zpsid=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX; zalb_c7cb34e6ac=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX")
.build();
Response response = client.newCall(request).execute();
System.out.println(response.body().string());
}
}
Copiedfetch("https://people.zoho.com/api/v1/courses/478346000019328001/settings/postcourseactivities/onlineTests/478346000019579015", {
method: "DELETE",
headers: {
"Cookie": "CSRF_TOKEN=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zcsr_tmp=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zpsid=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX; zalb_c7cb34e6ac=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
})
.then(response => response.text())
.then(data => console.log(data))
.catch(error => console.error("Error:", error));
Copiedcurl --location --request DELETE 'https://people.zoho.com/api/v1/courses/478346000019328001/settings/postcourseactivities/onlineTests/478346000019579015' \
--header 'Cookie: CSRF_TOKEN=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zcsr_tmp=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zpsid=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX; zalb_c7cb34e6ac=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX'
Copiedtry
{
response = invokeUrl
[
url: "https://people.zoho.com/api/v1/courses/478346000019328001/settings/postcourseactivities/onlineTests/478346000019579015"
type: DELETE
headers: {
"Cookie": "CSRF_TOKEN=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zcsr_tmp=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zpsid=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX; zalb_c7cb34e6ac=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
];
}
catch(e)
{
info "Exception while making the API request.";
}
Copiedimport requests
url = "https://people.zoho.com/api/v1/courses/478346000019328001/settings/postcourseactivities/onlineTests/478346000019579015"
headers = {
"Cookie": "CSRF_TOKEN=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zcsr_tmp=7cefb957-xxxx-xxxx-xxxx-xxxxxxxxxxxx; _zpsid=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX; zalb_c7cb34e6ac=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
}
response = requests.delete(url, headers=headers)
print(response.text)
Show full
Show less
Header
CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf
Response
Copied{
"code": "200",
"testId": "219225000000671061",
"message": "success"
}