type Asana = {
token: string;
};
/**
* Get the workspace memberships for a workspace
* Returns the compact workspace membership records for the workspace.
*/
export async function main(
auth: Asana,
workspace_gid: string,
user: string | undefined,
opt_pretty: string | undefined,
opt_fields: string | undefined,
limit: string | undefined,
offset: string | undefined
) {
const url = new URL(
`https://app.asana.com/api/1.0/workspaces/${workspace_gid}/workspace_memberships`
);
for (const [k, v] of [
["user", user],
["opt_pretty", opt_pretty],
["opt_fields", opt_fields],
["limit", limit],
["offset", offset],
]) {
if (v !== undefined && v !== "") {
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 346 days ago