We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23d6510 commit 60c3069Copy full SHA for 60c3069
1 file changed
src/helpers/admin/api.ts
@@ -79,3 +79,9 @@ export async function deleteRegistrations(ids: string[]): Promise<any> {
79
queryParam: { id: ids },
80
});
81
}
82
+export async function updateStudents(payload: any[]): Promise<any> {
83
+ return apiCall("/students", {
84
+ method: "PATCH",
85
+ body: payload,
86
+ });
87
+}
0 commit comments