//native
type Paylocity = {
clientId: string
clientSecret: string
}
/**
* Get employee pay statement details data for the specified year and check date.
* Get pay statement details API will return employee pay statement detail data currently available in Paylocity Payroll/HR solution for the specified year and check date.
*/
export async function main(
auth: Paylocity,
companyId: string,
employeeId: string,
year: string,
checkDate: string,
pagesize: string | undefined,
pagenumber: string | undefined,
includetotalcount: string | undefined,
codegroup: string | undefined
) {
const url = new URL(
`https://dc1prodgwext.paylocity.com/api/v2/companies/${companyId}/employees/${employeeId}/paystatement/details/${year}/${checkDate}`
)
for (const [k, v] of [
['pagesize', pagesize],
['pagenumber', pagenumber],
['includetotalcount', includetotalcount],
['codegroup', codegroup]
]) {
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://dc1prodgwext.paylocity.com/public/security/v1/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: Paylocity, 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