//native
type Codat = {
encodedKey: string
}
/**
* Get credit note
* The *Get credit note* endpoint returns a single credit note for a given creditNoteId.
[Credit notes](https://docs.codat.io/lending-api#/schemas/CreditNote) are issued to a customer to indicate debt, typically with reference to a previously issued invoice and/or purchase.
Before using this endpoint, you must have [retrieved data for the company](https://docs.codat.io/lending-api#/operations/refresh-company-data).
*/
export async function main(auth: Codat, companyId: string, creditNoteId: string) {
const url = new URL(
`https://api.codat.io/companies/${companyId}/data/creditNotes/${creditNoteId}`
)
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: `Basic ${auth.encodedKey}`
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 235 days ago