Edits history of script submission #15253 for ' Export audit records (confluence)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //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