Edits history of script submission #9338 for ' Creates a new Task Aero. (aero_workflow)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Aero_workflow = {
    	apiKey: string
    }
    
    export async function main(
    	auth: Aero_workflow,
    	accountid: string,
    	body: {
    		scheduledStartDate: string
    		scheduledTotalHours: number
    		scheduledHours: number
    		scheduledMinutes: number
    		assignedTo: string
    		aeroType: string
    		subject: string
    		priority: string
    		status: string
    		dueDate?: string
    		fullProjectName?: string
    		hat?: string
    		company?: string
    		contact?: string
    		description?: string
    		billable?: false | true
    		fixedFee?: false | true
    	}
    ) {
    	const url = new URL(`https://api.aeroworkflow.com/api/${accountid}/v1/AeroTasks`)
    
    	const response = await fetch(url, {
    		method: 'POST',
    		headers: {
    			'Content-Type': 'application/json',
    			apikey: 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