//native
type Aero_workflow = {
apiKey: string
}
export async function main(
auth: Aero_workflow,
accountid: string,
body: {
name: string
defaultEmailAddress?: string
phone?: string
website?: string
accountNumber?: string
fax?: string
hourlyBillableRate?: number
monthlyFixedFee?: number
contactFirstName?: string
contactLastName?: string
addressLine1?: string
addressLine2?: string
addressLine3?: string
addressCity?: string
addressState?: string
addressPostalCode?: string
addressCountry?: string
notes?: string
isLead?: false | true
}
) {
const url = new URL(`https://api.aeroworkflow.com/api/${accountid}/v1/Companies`)
const response = await fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
apikey: auth.apiKey
},
body: JSON.stringify(body)
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 2 days ago