Edits history of script submission #8968 for ' Delete Plan (baremetrics)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Baremetrics = {
    	apiKey: string
    }
    
    export async function main(resource: Baremetrics, sourceId: string, oid: string) {
    	const endpoint = `https://api.baremetrics.com/v1/${sourceId}/plans/${oid}`
    
    	const response = await fetch(endpoint, {
    		method: 'DELETE',
    		headers: {
    			'Content-Type': 'application/json',
    			Accept: 'application/json',
    			Authorization: `Bearer ${resource.apiKey}`
    		}
    	})
    
    	if (!response.ok) {
    		throw new Error(`HTTP error! status: ${response.status}`)
    	}
    
    	return { success: true }
    }
    

    Submitted by hugo697 629 days ago