Can Create a Goal
One script reply has been approved by the moderators Verified

Determine if the API user has permission to create a goal for this employee.

Created by hugo697 51 days ago
Submitted by hugo697 Bun
Verified 51 days ago
1
//native
2
/**
3
 * Can Create a Goal
4
 * Determine if the API user has permission to create a goal for this employee.
5
 */
6
export async function main(auth: RT.BambooHr, employeeId: string) {
7
	const url = new URL(
8
		`https://${auth.companyDomain}.bamboohr.com/api/v1/performance/employees/${employeeId}/goals/canCreateGoals`
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