//native
type Actimo = {
apiKey: string
}
export async function main(
auth: Actimo,
id: string,
type: 'recipients' | 'groups' | 'departments',
trainingId: string,
department: string | undefined,
direction: string | undefined,
group: string | undefined,
limit: string | undefined,
offset: string | undefined,
order: string | undefined,
search: string | undefined,
templateMessageId: string | undefined
) {
const url = new URL(
`https://actimo.com/api/v1/academy/${id}/training/${trainingId}/analytics/tables/${type}`
)
for (const [k, v] of [
['department', department],
['direction', direction],
['group', group],
['limit', limit],
['offset', offset],
['order', order],
['search', search],
['templateMessageId', templateMessageId]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
'api-key': auth.apiKey
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 2 days ago