Edits history of script submission #9127 for ' Edit Document Recipient (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,
    	recipient_id: string,
    	body: {
    		email?: string
    		first_name?: string
    		last_name?: string
    		company?: string
    		job_title?: string
    		phone?: string
    		state?: string
    		street_address?: string
    		city?: string
    		postal_code?: string
    	}
    ) {
    	const url = new URL(
    		`https://api.pandadoc.com/public/v1/documents/${id}/recipients/${recipient_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.text()
    }
    

    Submitted by hugo697 581 days ago