//native
type Box = {
token: string;
};
/**
* List workflows
* Returns list of workflows that act on a given `folder ID`, and
have a flow with a trigger type of `WORKFLOW_MANUAL_START`.
You application must be authorized to use the `Manage Box Relay` application
scope within the developer console in to use this endpoint.
*/
export async function main(
auth: Box,
folder_id: string | undefined,
trigger_type: string | undefined,
limit: string | undefined,
marker: string | undefined,
) {
const url = new URL(`https://api.box.com/2.0/workflows`);
for (const [k, v] of [
["folder_id", folder_id],
["trigger_type", trigger_type],
["limit", limit],
["marker", marker],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
Authorization: "Bearer " + auth.token,
},
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