//native
type Xero = {
token: string
}
/**
* Retrieves specific attachment for a specific purchase order using a unique attachment Id
*
*/
export async function main(
auth: Xero,
PurchaseOrderID: string,
AttachmentID: string,
xero_tenant_id: string,
contentType: string
) {
const url = new URL(
`https://api.xero.com/api.xro/2.0/PurchaseOrders/${PurchaseOrderID}/Attachments/${AttachmentID}`
)
const response = await fetch(url, {
method: 'GET',
headers: {
Accept: 'application/json',
'xero-tenant-id': xero_tenant_id,
contentType: contentType,
Authorization: 'Bearer ' + auth.token
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.text()
}
Submitted by hugo697 515 days ago