//native
type Botify = {
token: string
}
/**
* Get saved filters
* List all the project's saved filters (each filter's name, ID and filter value)
*/
export async function main(
auth: Botify,
username: string,
project_slug: string,
page: string | undefined,
size: string | undefined,
search: string | undefined
) {
const url = new URL(`https://api.botify.com/projects/${username}/${project_slug}/filters`)
for (const [k, v] of [
['page', page],
['size', size],
['search', search]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Token ' + auth.token
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.text()
}
Submitted by hugo697 2 days ago