0

Get All Aggregate Goal Info, Version 1.2

by
Published Oct 17, 2025

Provides a list of all goals, type counts, filter actions, goal comment counts, and employees shared with goals for the given employee. Difference from Version 1.1: Returns all goals, including goals that contain milestones.

Script bamboo_hr Verified

The script

Submitted by hugo697 Bun
Verified 235 days ago
1
//native
2
/**
3
 * Get All Aggregate Goal Info, Version 1.2
4
 * Provides a list of all goals, type counts, filter actions, goal comment counts, and employees shared with goals for the given employee. Difference from Version 1.1: Returns all goals, including goals that contain milestones.
5
 */
6
export async function main(auth: RT.BambooHr, employeeId: string) {
7
	const url = new URL(
8
		`https://${auth.companyDomain}.bamboohr.com/api/v1_2/performance/employees/${employeeId}/goals/aggregate`
9
	)
10

11
	const response = await fetch(url, {
12
		method: 'GET',
13
		headers: {
14
			Authorization: 'Basic ' + btoa(`${auth.apiKey}:x`)
15
		},
16
		body: undefined
17
	})
18
	if (!response.ok) {
19
		const text = await response.text()
20
		throw new Error(`${response.status} ${text}`)
21
	}
22
	return await response.json()
23
}
24