0

Delete a job deployment restriction

by
Published Oct 17, 2025

Delete a job deployment restriction

Script qovery Verified

The script

Submitted by hugo697 Bun
Verified 235 days ago
1
//native
2
/**
3
 * Delete a job deployment restriction
4
 * Delete a job deployment restriction
5
 */
6
export async function main(auth: RT.Qovery, jobId: string, deploymentRestrictionId: string) {
7
	const url = new URL(
8
		`https://api.qovery.com/job/${jobId}/deploymentRestriction/${deploymentRestrictionId}`
9
	)
10

11
	const response = await fetch(url, {
12
		method: 'DELETE',
13
		headers: {
14
			Authorization: 'Token ' + auth.apiKey
15
		},
16
		body: undefined
17
	})
18
	if (!response.ok) {
19
		const text = await response.text()
20
		throw new Error(`${response.status} ${text}`)
21
	}
22
	return await response.text()
23
}
24