/**
* list schedules with last 20 jobs
*
*/
export async function main(
workspace: string,
page: string | undefined,
per_page: string | undefined
) {
const url = new URL(
`${BASE_URL}/api/w/${workspace}/schedules/list_with_jobs`
);
for (const [k, v] of [
["page", page],
["per_page", per_page],
]) {
if (v !== undefined && v !== "") {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + WM_TOKEN,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 415 days ago
/**
* list schedules with last 20 jobs
*
*/
export async function main(
workspace: string,
page: string | undefined,
per_page: string | undefined
) {
const url = new URL(
`${BASE_URL}/api/w/${workspace}/schedules/list_with_jobs`
);
for (const [k, v] of [
["page", page],
["per_page", per_page],
]) {
if (v !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + WM_TOKEN,
},
body: undefined,
});
return await response.json();
}
Submitted by rubenfiszel 416 days ago
/**
* list schedules with last 20 jobs
*
*/
export async function main(
workspace: string,
page: string | undefined,
per_page: string | undefined,
) {
const url = new URL(
`${BASE_URL}/api/w/${workspace}/schedules/list_with_jobs`,
);
for (const [k, v] of [
["page", page],
["per_page", per_page],
]) {
if (v !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + WM_TOKEN,
},
body: undefined,
});
return await response.json();
}
Submitted by admin 486 days ago