Edits history of script submission #9348 for ' Creates a Master Aero based on the Library Template with the Id provided. (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,
    	id: string,
    	body: {
    		scheduledTotalHours: number
    		scheduledHours: number
    		scheduledMinutes: number
    		renewalPattern: string
    		autoRenew?: false | true
    		isSunday?: false | true
    		isMonday?: false | true
    		isTuesday?: false | true
    		isWednesday?: false | true
    		isThursday?: false | true
    		isFriday?: false | true
    		isSaturday?: false | true
    		isDayOfMonth?: false | true
    		billable?: false | true
    		fixedFee?: false | true
    		repeatEvery?: number
    		numberOfDates?: number
    		startDate?: string
    		endOnDate?: string
    		offset?: number
    		priority: string
    		aeroTypeId?: number
    		teamMemberId?: number
    		customerId?: number
    		aeroGroupId?: number
    		contactId?: number
    		hatId?: number
    		dayToDue?: number
    	}
    ) {
    	const url = new URL(
    		`https://api.aeroworkflow.com/api/${accountid}/v1/MasterAeros/FromLibraryTemplate/${id}`
    	)
    
    	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 557 days ago