//native
type Zixflow = {
apiKey: string
}
export async function main(
resource: Zixflow,
target: 'collection' | 'list',
targetId: string,
attributeId: string
) {
const endpoint = `https://api.zixflow.com/api/v1/attributes/${target}/${targetId}/${attributeId}`
const response = await fetch(endpoint, {
method: 'DELETE',
headers: {
Authorization: `Bearer ${resource.apiKey}`,
'Content-Type': 'application/json'
}
})
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}
const data = await response.json()
return data
}
Submitted by hugo697 606 days ago