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