From 7053212566f588f66df8e09a7c0a75d6024d39af Mon Sep 17 00:00:00 2001 From: Jarred Sumner Date: Fri, 25 Oct 2024 23:47:15 -0700 Subject: [PATCH] Update associate-issue-with-sentry.ts --- scripts/associate-issue-with-sentry.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/associate-issue-with-sentry.ts b/scripts/associate-issue-with-sentry.ts index 66a79f1746..50844cc29f 100644 --- a/scripts/associate-issue-with-sentry.ts +++ b/scripts/associate-issue-with-sentry.ts @@ -15,7 +15,7 @@ if (!sentryId) { throw new Error("Missing sentry_id"); } -const response = await fetch(`https://sentry.io/api/0/organizations/4507155222364160/events/${sentryId}/`, { +const response = await fetch(`https://sentry.io/api/0/organizations/4507155222364160/eventids/${sentryId}/`, { headers: { Authorization: `Bearer ${SENTRY_AUTH_TOKEN}`, },