Edits history of script submission #15443 for ' Download employee agreement PDF (deel)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    /**
     * Download employee agreement PDF
     * Get link to download the employee agreement PDF.
     **Token scopes**: `worker:read`
     */
    export async function main(auth: RT.Deel, contract_id: string, version?: string | undefined) {
    	const url = new URL(
    		`https://api.letsdeel.com/rest/v2/eor/workers/contracts/${contract_id}/employee-agreement/download`
    	)
    	for (const [k, v] of [['version', version]]) {
    		if (v !== undefined && v !== '') {
    			url.searchParams.append(k, v)
    		}
    	}
    	const response = await fetch(url, {
    		method: 'GET',
    		headers: {
    			Authorization: 'Bearer ' + auth.apiKey
    		},
    		body: undefined
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.json()
    }
    

    Submitted by hugo697 235 days ago