This endpoint lets you fetch multiple candidates under a task of your organization. You can apply pagination and filters using query paramters.
Query Parameters | Expected Type | Default |
mode | "basic" | "detailed" | "basic" |
limit | number | 10 |
page | number | 1 |
fullname | string | |
code | string | |
uniqId | string |
{
candidates: (Basic | Detailed)[];
pagination: {
totalItems: number;
totalPages: number;
currentPage: number;
limit: number;
next: string | null;
previous: string | null;
}
}