//native
type Aero_workflow = {
apiKey: string
}
export async function main(
auth: Aero_workflow,
id: string,
accountid: string,
category: string,
aeroid: string
) {
const url = new URL(
`https://api.aeroworkflow.com/api/${accountid}/v1/Aero${category}s/${aeroid}/AeroTimes/${id}`
)
const response = await fetch(url, {
method: 'GET',
headers: {
apikey: auth.apiKey
},
body: undefined
})
if (!response.ok) {
const text = await response.text()
throw new Error(`${response.status} ${text}`)
}
return await response.json()
}
Submitted by hugo697 2 days ago