//native
type Actimo = {
apiKey: string
}
export async function main(
auth: Actimo,
id: string,
itemId: string,
contactId: string,
search: string | undefined,
count: string | undefined,
pageSize: string | undefined,
page: string | undefined,
tags: string | undefined,
order: string | undefined,
direction: string | undefined,
moduleUploadId: string | undefined
) {
const url = new URL(`https://actimo.com/api/v1/messages/${id}/uploads/${itemId}/content`)
for (const [k, v] of [
['search', search],
['count', count],
['pageSize', pageSize],
['page', page],
['tags', tags],
['order', order],
['direction', direction],
['moduleUploadId', moduleUploadId]
]) {
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 61 days ago