//native
type Codat = {
encodedKey: string
}
/**
* Get company information
* Use the *Get company information* endpoint to return information about the company available from the underlying accounting software.
*/
export async function main(auth: Codat, companyId: string, connectionId: string) {
const url = new URL(
`https://api.codat.io/companies/${companyId}/connections/${connectionId}/bankFeeds/info`
)
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