//native
type Codat = {
encodedKey: string
}
/**
* List banking transactions
* The *List transactions* endpoint returns a list of [transactions](https://docs.codat.io/banking-api#/schemas/Transaction) for a given company's connection.
[Transactions](https://docs.codat.io/banking-api#/schemas/Transaction) provide an immutable source of up-to-date information on income and expenditure.
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/codat-api#/operations/refresh-company-data).
*/
export async function main(
auth: Codat,
companyId: string,
page: string | undefined,
pageSize: string | undefined,
query: string | undefined,
orderBy: string | undefined
) {
const url = new URL(`https://api.codat.io/companies/${companyId}/data/banking-transactions`)
for (const [k, v] of [
['page', page],
['pageSize', pageSize],
['query', query],
['orderBy', orderBy]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: `Basic ${auth.encodedKey}`
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 235 days ago