Update Assignment Marks API

This API is used to update marks in LMS assignments.

Request URL: (Self Paced Learning Course)

https://people.zoho.com/api/v1/courses/<courseId>/modules/<moduleId>/assignments/<assignmentId>/updateMarks?learnerErecno=<learnerErecno>&marks=<marks>

Request URL: (Blended Learning Course)

https://people.zoho.com/api/v1/courses/<courseId>/batches/<batchId>/modules/<moduleId>/assignments/<assignmentId>/updateMarks?learnerErecno=<learnerErecno>&marks=<marks>

Scope:

ZOHOPEOPLE.training.ALL
OR
ZOHOPEOPLE.training.CREATE

Possible Operation Types:

ALL - Complete access to data
CREATE - Only to create data

Method:

POST

Request Parameters

ParametersValues AllowedDefault ValueDescription
*learnerErecno <long>-Specify the learnerErecno
*marks<int>-Specify the marks

*mandatory parameters

Error Codes and Descriptions

Status CodesDescription
400Invalid parameter value/input parameter missing
403Sorry! You are not authorized to do this operation
404Not found
422Maximum limit exceeded
500Sorry! 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/x-www-form-urlencoded");
        RequestBody body = RequestBody.create(mediaType, "learnerErecno=478346000000133269&marks=10");

        Request request = new Request.Builder()
            .url("https://people.zoho.com/api/v1/courses/478346000024844001/modules/478346000024844013/assignments/478346000025827001/updateMarks")
            .post(body)
            .addHeader("Authorization", "Zoho-oauthtoken YOUR_ACCESS_TOKEN")
            .addHeader("Content-Type", "application/x-www-form-urlencoded")
            .build();

        Response response = client.newCall(request).execute();
        System.out.println(response.body().string());
    }
}
Copiedconst url = "https://people.zoho.com/api/v1/courses/478346000024844001/modules/478346000024844013/assignments/478346000025827001/updateMarks";
const params = new URLSearchParams({
    learnerErecno: "478346000000133269",
    marks: "10"
});

fetch(url, {
    method: "POST",
    headers: {
        "Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN",
        "Content-Type": "application/x-www-form-urlencoded"
    },
    body: params
})
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.error("Error:", error));
Copiedcurl -X POST "https://people.zoho.com/api/v1/courses/478346000024844001/modules/478346000024844013/assignments/478346000025827001/updateMarks" \
-H "Authorization: Zoho-oauthtoken YOUR_ACCESS_TOKEN" \
-H "Content-Type: application/x-www-form-urlencoded" \
--data "learnerErecno=478346000000133269&marks=10"
Copiedurl = "https://people.zoho.com/api/v1/courses/478346000024844001/modules/478346000024844013/assignments/478346000025827001/updateMarks";

headers = map();
headers.put("Authorization", "Zoho-oauthtoken YOUR_ACCESS_TOKEN");
headers.put("Content-Type", "application/x-www-form-urlencoded");

params = "learnerErecno=478346000000133269&marks=10";

response = invokeurl
[
    url : url
    type : POST
    headers: headers
    parameters: params
];

info response;
Copiedimport requests

url = "https://people.zoho.com/api/v1/courses/478346000024844001/modules/478346000024844013/assignments/478346000025827001/updateMarks"

payload = {
    "learnerErecno": "478346000000133269",
    "marks": "10"
}

headers = {
    "Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN",
    "Content-Type": "application/x-www-form-urlencoded"
}

response = requests.post(url, headers=headers, data=payload)

print(response.text)

Header

CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Response

Copied{
    "code": 200,
    "status": "success"
}