Edits history of script submission #9336 for ' Gets a list of Company Names that have been queried. (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,
    	name: string | undefined,
    	active: string | undefined
    ) {
    	const url = new URL(`https://api.aeroworkflow.com/api/${accountid}/v1/Companies/Query`)
    
    	for (const [k, v] of [
    		['name', name],
    		['active', active]
    	]) {
    		if (v !== undefined && v !== '' && k !== undefined) {
    			url.searchParams.append(k, v)
    		}
    	}
    
    	const response = await fetch(url, {
    		method: 'GET',
    		headers: {
    			apikey: auth.apiKey
    		},
    		body: undefined
    	})
    
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    
    	return await response.json()
    }
    

    Submitted by hugo697 581 days ago