type Baremetrics = {
apiKey: string
}
export async function main(
resource: Baremetrics,
sourceId: string,
body: {
oid: string
name?: string
email?: string
notes?: string
}
) {
const endpoint = `https://api.baremetrics.com/v1/${sourceId}/customers`
const response = await fetch(endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',
Authorization: `Bearer ${resource.apiKey}`
},
body: JSON.stringify(body)
})
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}
const data = await response.json()
return data.customer
}
Submitted by hugo697 123 days ago