Skip to content

Commit

Permalink
Remove the API version from the API URL
Browse files Browse the repository at this point in the history
  • Loading branch information
cdarne committed Nov 27, 2024
1 parent fe1b92e commit e703f0d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli-kit/src/public/node/api/webhooks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export async function webhooksRequest<TResult, TVariables extends Variables>(
): Promise<TResult> {
const api = 'Webhooks'
const fqdn = await appManagementFqdn()
const url = `https://${fqdn}/webhooks/unstable/organizations/${organizationId}/graphql.json`
const url = `https://${fqdn}/webhooks/organizations/${organizationId}/graphql.json`
const result = limiter.schedule<TResult>(() =>
graphqlRequestDoc<TResult, TVariables>({
query,
Expand Down

0 comments on commit e703f0d

Please sign in to comment.