Edits history of script submission #20322 for ' Update an organization members attributes (sentry)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    /**
     * Update an organization members attributes
     * Update an organization member's attributes with a SCIM PATCH Request.
     */
    export async function main(auth: RT.Sentry, member_id: string, body: Body) {
    	const url = new URL(
    		`https://${auth.region}.sentry.io/api/0/organizations/${auth.organizationSlug}/scim/v2/Users/${member_id}`
    	)
    
    	const response = await fetch(url, {
    		method: 'PATCH',
    		headers: {
    			'Content-Type': 'application/json',
    			Authorization: 'Bearer ' + auth.token
    		},
    		body: JSON.stringify(body)
    	})
    	if (!response.ok) {
    		const text = await response.text()
    		throw new Error(`${response.status} ${text}`)
    	}
    	return await response.text()
    }
    
    /* eslint-disable */
    /**
     * This file was automatically generated by json-schema-to-typescript.
     * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
     * and run json-schema-to-typescript to regenerate this file.
     */
    
    export interface Body {
    	/**
    	 * A list of operations to perform. Currently, the only valid operation is setting
    	 * a member's `active` attribute to false, after which the member will be permanently deleted.
    	 * ```json
    	 * {
    	 *     "Operations": [{
    	 *         "op": "replace",
    	 *         "path": "active",
    	 *         "value": False
    	 *     }]
    	 * }
    	 * ```
    	 *
    	 *
    	 * @maxItems 100
    	 */
    	Operations: {
    		op: string
    		value: unknown
    		path?: string
    		[k: string]: unknown
    	}[]
    	[k: string]: unknown
    }
    

    Submitted by hugo697 235 days ago