//native
/**
* Retrieve workout plans for a given user ID
* Used to get workout plans the user has registered on their account. This can be strength workouts (sets, reps, weight lifted) or cardio workouts (warmup, intervals of different intensities, cooldown etc)
*/
export async function main(
auth: RT.Terra,
user_id: string | undefined,
start_date: string | undefined,
end_date?: string | undefined,
to_webhook?: string | undefined
) {
const url = new URL(`https://api.tryterra.co/v2/plannedWorkout`)
for (const [k, v] of [
['user_id', user_id],
['start_date', start_date],
['end_date', end_date],
['to_webhook', to_webhook]
]) {
if (v !== undefined && v !== '') {
url.searchParams.append(k, v)
}
}
const response = await fetch(url, {
method: 'GET',
headers: {
'dev-id': auth.devId,
'X-api-key': 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 235 days ago