type Baremetrics = {
apiKey: string
}
export async function main(resource: Baremetrics, sourceId: string, oid: string) {
const endpoint = `https://api.baremetrics.com/v1/${sourceId}/customers/${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 89 days ago