From c70f7b4215406c391dfc84abdf44af9087b16a61 Mon Sep 17 00:00:00 2001 From: Veloi <85405932+veloii@users.noreply.github.com> Date: Mon, 18 Sep 2023 20:09:10 +0100 Subject: [PATCH] fix: getPupilFields url --- src/core/baseClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/baseClient.ts b/src/core/baseClient.ts index 8c3ebac..b33f231 100644 --- a/src/core/baseClient.ts +++ b/src/core/baseClient.ts @@ -310,7 +310,7 @@ export class BaseClient { async getPupilFields(): Promise { return ( await this.makeAuthedRequest( - this.API_BASE + "/apiv2student/customfields/" + this.studentId, + this.API_BASE + "/customfields/" + this.studentId, { method: "GET" }