//native
type Codat = {
encodedKey: string
}
/**
* Update expense transactions
* Update an expense transaction
*/
export async function main(
auth: Codat,
companyId: string,
transactionId: string,
body: {
type: '#/definitions/expenseType'
issueDate: string
currency?: string
currencyRate?: number
contactRef?: { id?: string; contactType?: 'Supplier' }
merchantName?: string
lines?: {
netAmount: number
taxAmount: number
taxRateRef?: { id?: string }
accountRef: { id?: string }
trackingRefs?: { id?: string }[]
}[]
notes?: string
}
) {
const url = new URL(
`https://api.codat.io/companies/${companyId}/sync/expenses/expense-transactions/${transactionId}`
)
const response = await fetch(url, {
method: 'PUT',
headers: {
'Content-Type': 'application/json',
Authorization: `Basic ${auth.encodedKey}`
},
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