//native
type Telnyx = {
apiKey: string
}
/**
* List Brands
* This endpoint is used to list all brands associated with your organization.
*/
export async function main(
auth: Telnyx,
page: string | undefined,
recordsPerPage: string | undefined,
sort:
| 'assignedCampaignsCount'
| '-assignedCampaignsCount'
| 'brandId'
| '-brandId'
| 'createdAt'
| '-createdAt'
| 'displayName'
| '-displayName'
| 'identityStatus'
| '-identityStatus'
| 'status'
| '-status'
| 'tcrBrandId'
| '-tcrBrandId'
| undefined,
displayName: string | undefined,
entityType: string | undefined,
state: string | undefined,
country: string | undefined,
brandId: string | undefined,
tcrBrandId: string | undefined
) {
const url = new URL(`https://api.telnyx.com/v2/brand`)
for (const [k, v] of [
['page', page],
['recordsPerPage', recordsPerPage],
['sort', sort],
['displayName', displayName],
['entityType', entityType],
['state', state],
['country', country],
['brandId', brandId],
['tcrBrandId', tcrBrandId]
]) {
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