//native
type SageIntacct = {
token: string
}
/**
* Create a price list entry
* Creates a new price list entry.
*/
export async function main(
auth: SageIntacct,
body: {
key?: string
id?: string
href?: string
productLine?: { key?: string; id?: string; href?: string }
currency?: string
startDate?: string
endDate?: string
minimumQuantity?: string
maximumQuantity?: string
value?: string
valueType?: 'actual' | 'dollarMarkup' | 'dollarDiscount' | 'markupPercent' | 'discountPercent'
isFixedPrice?: 'true' | 'false'
employee?: { key?: string; id?: string; href?: string }
item?: { key?: string; id?: string; name?: string; href?: string }
priceList?: { key?: string; id?: string; href?: string }
audit?: {
createdDateTime?: string
modifiedDateTime?: string
createdBy?: string
modifiedBy?: string
} & { createdBy?: string; modifiedBy?: string }
status?: 'active' | 'inactive'
} & {}
) {
const url = new URL(`https://api.intacct.com/ia/api/v1/objects/purchasing/price-list-entry`)
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