Edits history of script submission #14153 for ' Get All Aggregate Goal Info (bamboo_hr)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    /**
     * Get All Aggregate Goal Info
     * Provides a list of all goals, type counts, goal comment counts, and employees shared with goals for the given employee. This version of the endpoint will not return any goals with milestones. Milestone functionality for this endpoint begins in version 1.2.
     */
    export async function main(auth: RT.BambooHr, employeeId: string) {
    	const url = new URL(
    		`https://${auth.companyDomain}.bamboohr.com/api/v1/performance/employees/${employeeId}/goals/aggregate`
    	)
    
    	const response = await fetch(url, {
    		method: 'GET',
    		headers: {
    			Authorization: 'Basic ' + btoa(`${auth.apiKey}:x`)
    		},
    		body: undefined
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.json()
    }
    

    Submitted by hugo697 235 days ago