Edits history of script submission #9155 for ' Send Document (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: {
    		message?: string
    		subject?: string
    		silent?: false | true
    		sender?: {}
    		forwarding_settings?: {
    			forwarding_allowed?: false | true
    			forwarding_with_reassigning_allowed?: false | true
    		}
    		selected_approvers?: {
    			steps?: {
    				id: string
    				group: {
    					id: string
    					type: string
    					assignees: { user?: string; is_selected?: false | true }[]
    				}
    			}[]
    		}
    	}
    ) {
    	const url = new URL(`https://api.pandadoc.com/public/v1/documents/${id}/send`)
    
    	const response = await fetch(url, {
    		method: 'POST',
    		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