//native
type Personio = {
clientId: string
clientSecret: string
}
/**
* List compensations.
* Returns a list of payroll compensations of people for an authorized company. Compensations listed include base salary (excluding proration), hourly, one time compensation, recurring compensation, and bonuses.
*/
export async function main(
auth: Personio,
start_date: string | undefined,
end_date: string | undefined,
person_id: string | undefined,
legal_entity_id: string | undefined,
limit: string | undefined,
cursor: string | undefined
) {
const url = new URL(`https://api.personio.de/v2/compensations`)
for (const [k, v] of [
['start_date', start_date],
['end_date', end_date],
['person.id', person_id],
['legal_entity.id', legal_entity_id],
['limit', limit],
['cursor', cursor]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Bearer ' + (await getOAuthToken(auth, 'https://api.personio.de/oauth2/token'))
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
async function getOAuthToken(auth: Personio, tokenUrl: string): Promise<string> {
const params = new URLSearchParams({
grant_type: 'client_credentials',
client_id: auth.clientId,
client_secret: auth.clientSecret
})
const response = await fetch(tokenUrl, {
method: 'POST',
headers: {
Authorization: 'Basic ' + btoa(`${auth.clientId}:${auth.clientSecret}`),
'Content-Type': 'application/x-www-form-urlencoded'
},
body: params.toString()
})
if (!response.ok) {
const text = await response.text()
throw new Error(`OAuth token request failed: ${response.status} ${text}`)
}
const data = await response.json()
return data.access_token
}
Submitted by hugo697 235 days ago