//native
type Codat = {
encodedKey: string
}
/**
* List purchase order attachments
* The *List purchase order attachments* endpoint returns a list of attachments available to download for a given `purchaseOrderId`.
[Purchase Orders](https://docs.codat.io/accounting-api#/schemas/PurchaseOrder) represent a business's intent to purchase goods or services from a supplier.
*/
export async function main(
auth: Codat,
companyId: string,
connectionId: string,
purchaseOrderId: string
) {
const url = new URL(
`https://api.codat.io/companies/${companyId}/connections/${connectionId}/data/purchaseOrders/${purchaseOrderId}/attachments`
)
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