type Convertkit = {
apiSecret: string
}
export async function main(resource: Convertkit, labels: string[]) {
const endpoint = `https://api.convertkit.com/v3/custom_fields`
const body = {
api_secret: resource.apiSecret,
label: labels
}
const response = await fetch(endpoint, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(body)
})
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}
const data = await response.json()
return data
}
Submitted by hugo697 76 days ago