Skip to main content

Fetch Single Assignment API

This API is used to fetch assignment details in LMS 

Request URL: (Self Paced Learning Course)

https://people.zoho.com/api/v1/courses/<courseId>/modules/<moduleId>/assignments/<assignmentId>

Request URL: (Blended Learning Course)

https://people.zoho.com/api/v1/courses/<courseId>/batches/<batchId>/modules/<moduleId>/assignments/<assignmentId>

Scope:

ZOHOPEOPLE.training.ALL
OR
ZOHOPEOPLE.training.READ

Possible Operation Types:

ALL - Complete access to data
READ - Only to fetch data

Method:

GET

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();

        Request request = new Request.Builder()
            .url("https://people.zoho.com/api/v1/courses/478346000019328001/modules/478346000019328013/assignments/478346000019328043")
            .get()
            .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/478346000019328001/modules/478346000019328013/assignments/478346000019328043";

fetch(url, {
    method: "GET",
    headers: {
        "Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN"
    }
})
.then(response => response.json())
.then(result => console.log(result))
.catch(error => console.error("Error:", error));
Copiedcurl -X GET "https://people.zoho.com/api/v1/courses/478346000019328001/modules/478346000019328013/assignments/478346000019328043" \
-H "Authorization: Zoho-oauthtoken YOUR_ACCESS_TOKEN"
Copiedurl = "https://people.zoho.com/api/v1/courses/478346000019328001/modules/478346000019328013/assignments/478346000019328043";

headers = map();
headers.put("Authorization", "Zoho-oauthtoken YOUR_ACCESS_TOKEN");

response = invokeurl
[
    url : url
    type : GET
    headers: headers
];

info response;
Copiedimport requests

url = "https://people.zoho.com/api/v1/courses/478346000019328001/modules/478346000019328013/assignments/478346000019328043"

headers = {
    "Authorization": "Zoho-oauthtoken YOUR_ACCESS_TOKEN"
}

response = requests.get(url, headers=headers)

print(response.text)

Show full

Show less

Header

CopiedAuthorization: Zoho-oauthtoken 1000.8cb99dxxxxxxxx9be93.9b8xxxxxxf

Response

Copied{
    "code": 200,
    "assignment": {
        "assignMark": "45",
        "totalLearnersCount": 0,
        "description": "Description for Assignment",
        "resources": [],
        "assignmentId": "219225000000645171",
        "canUserDelete": true,
        "lockUntil": "29-12-2021",
        "gradeCategoryName": "",
        "isLocked": true,
        "gradeCategoryId": "",
        "canUserEdit": true,
        "moduleId": "219225000000648001",
        "marksUpdatedLearnersCount": "0/0",
        "assignmentName": "Assignment One"
    },
    "message": "success"
}

Show full

Show less