//native
type Xero = {
token: string;
};
/**
* Retrieves a specific attachment from a specific contact using a unique attachment Id
*
*/
export async function main(
auth: Xero,
ContactID: string,
AttachmentID: string,
xero_tenant_id: string,
contentType: string,
) {
const url = new URL(
`https://api.xero.com/api.xro/2.0/Contacts/${ContactID}/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 127 days ago