//native
type SageIntacct = {
token: string
}
/**
* Clear all MEA allocations
* Clear MEA allocations to reset the applicable revenue schedules to the amounts that existed prior to the MEA allocation.
*/
export async function main(auth: SageIntacct, body: { key: string }) {
const url = new URL(
`https://api.intacct.com/ia/api/v1/workflows/contracts/contract/clear-all-mea`
)
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Authorization: 'Bearer ' + auth.token
},
body: JSON.stringify(body)
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 235 days ago