//native
type Telnyx = {
apiKey: string
}
/**
* List all requirement types
* List all requirement types ordered by created_at descending
*/
export async function main(
auth: Telnyx,
filter_name__contains_: string | undefined,
sort__: 'created_at' | 'name' | 'updated_at' | undefined
) {
const url = new URL(`https://api.telnyx.com/v2/requirement_types`)
for (const [k, v] of [
['filter[name][contains]', filter_name__contains_],
['sort[]', sort__]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Bearer ' + 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 428 days ago