//native
type SageIntacct = {
token: string
}
/**
* Update a summary
* Updates an existing AR summary by setting field values. Any fields not provided remain unchanged.
*/
export async function main(
auth: SageIntacct,
key: string,
body: {
key?: string
id?: string
href?: string
name?: string
summaryCreationType?: 'system' | 'manual'
glPostingDate?: string
recordType?: 'invoice' | 'payment' | 'adjustment' | 'discount' | 'overpayment'
totalAmount?: string
state?: 'open' | 'closed'
parent?: { key?: string; id?: string; href?: string }
preventGLPosting?: false | true
isQuickPaymentSummary?: false | true
status?: 'active' | 'inactive'
entity?: { key?: string; id?: string; name?: string; href?: string }
} & { id?: {} }
) {
const url = new URL(
`https://api.intacct.com/ia/api/v1/objects/accounts-receivable/summary/${key}`
)
const response = await fetch(url, {
method: 'PATCH',
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