//native
type Actimo = {
apiKey: string
}
export async function main(
auth: Actimo,
id: string,
bounce: string | undefined,
moduleDetails: string | undefined,
modules: string | undefined,
open: string | undefined,
unique: string | undefined,
since: string | undefined
) {
const url = new URL(`https://actimo.com/api/v1/messages/${id}/stats`)
for (const [k, v] of [
['bounce', bounce],
['moduleDetails', moduleDetails],
['modules', modules],
['open', open],
['unique', unique],
['since', since]
]) {
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