//native
type Confluence = {
email: string
apiToken: string
domain: string
}
/**
* Export audit records
* Exports audit records as a CSV file or ZIP file.
**[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:
'Confluence Administrator' global permission.
*/
export async function main(
auth: Confluence,
startDate: string | undefined,
endDate: string | undefined,
searchString: string | undefined,
format: 'csv' | 'zip' | undefined
) {
const url = new URL(`https://${auth.domain}/wiki/rest/api/audit/export`)
for (const [k, v] of [
['startDate', startDate],
['endDate', endDate],
['searchString', searchString],
['format', format]
]) {
if (v !== undefined && v !== '' && k !== undefined) {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
Authorization: 'Basic ' + btoa(`${auth.email}:${auth.apiToken}`)
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.text()
}
Submitted by hugo697 235 days ago