Edits history of script submission #9175 for ' Update webhook subscription (pandadoc)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Pandadoc = {
    	apiKey: string
    }
    
    export async function main(
    	auth: Pandadoc,
    	id: string,
    	body: {
    		name?: string
    		url?: string
    		active?: false | true
    		payload?: 'metadata' | 'fields' | 'products' | 'tokens' | 'pricing'[]
    		triggers?:
    			| 'recipient_completed'
    			| 'document_updated'
    			| 'document_deleted'
    			| 'document_state_changed'
    			| 'document_creation_failed'
    			| 'quote_updated'[]
    	}
    ) {
    	const url = new URL(`https://api.pandadoc.com/public/v1/webhook-subscriptions/${id}`)
    
    	const response = await fetch(url, {
    		method: 'PATCH',
    		headers: {
    			'Content-Type': 'application/json',
    			Authorization: `API-Key ${auth.apiKey}`
    		},
    		body: JSON.stringify(body)
    	})
    
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    
    	return await response.json()
    }
    

    Submitted by hugo697 581 days ago