This will return URL of the invoice PDF
1
//native
2
/**
3
* Get invoice link
4
* This will return URL of the invoice PDF
5
*/
6
export async function main(auth: RT.Qovery, organizationId: string, invoiceId: string) {
7
const url = new URL(
8
`https://api.qovery.com/organization/${organizationId}/invoice/${invoiceId}/download`
9
)
10
11
const response = await fetch(url, {
12
method: 'GET',
13
headers: {
14
Authorization: 'Token ' + auth.apiKey
15
},
16
body: undefined
17
})
18
if (!response.ok) {
19
const text = await response.text()
20
throw new Error(`${response.status} ${text}`)
21
}
22
return await response.json()
23
24