Edits history of script submission #15281 for ' Get groups (confluence)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Confluence = {
    	email: string
    	apiToken: string
    	domain: string
    }
    /**
     * Get groups
     * Returns all user groups. The returned groups are ordered alphabetically in
    ascending order by group name.
    
    **[Permissions](https://confluence.atlassian.com/x/_AozKw) required**:
    Permission to access the Confluence site ('Can use' global permission).
     */
    export async function main(
    	auth: Confluence,
    	start: string | undefined,
    	limit: string | undefined,
    	accessType: 'user' | 'admin' | 'site-admin' | undefined
    ) {
    	const url = new URL(`https://${auth.domain}/wiki/rest/api/group`)
    	for (const [k, v] of [
    		['start', start],
    		['limit', limit],
    		['accessType', accessType]
    	]) {
    		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.json()
    }
    

    Submitted by hugo697 235 days ago