From c1f68313b2b203cee82cb451c5fbbe89edc0a2fd Mon Sep 17 00:00:00 2001 From: Chuck Lantz Date: Thu, 11 Jun 2026 20:42:16 -0700 Subject: [PATCH] Switch getting job details from a GET to a POST --- src/client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.ts b/src/client.ts index 36eb173..7a5000f 100644 --- a/src/client.ts +++ b/src/client.ts @@ -460,7 +460,7 @@ export class PlatformClient { const url = new URL(`jobs/${this._jobId}`, this.baseUrl); const response = await fetch(url.toString(), { - method: "GET", + method: "POST", headers: this.headers, });