//native
type Miro = {
token: string;
};
/**
* Update board
* Updates a specific board.Required scope boards:write Rate limiting Level 2
*/
export async function main(
auth: Miro,
board_id: string,
body: {
description?: string;
name?: string;
policy?: {
permissionsPolicy?: {
collaborationToolsStartAccess?:
| "all_editors"
| "board_owners_and_coowners";
copyAccess?: "anyone" | "team_members" | "team_editors" | "board_owner";
sharingAccess?:
| "team_members_with_editing_rights"
| "owner_and_coowners";
};
sharingPolicy?: {
access?: "private" | "view" | "edit" | "comment";
inviteToAccountAndBoardLinkAccess?:
| "viewer"
| "commenter"
| "editor"
| "no_access";
organizationAccess?: "private" | "view" | "edit" | "comment";
teamAccess?: "private" | "view" | "edit" | "comment";
};
};
teamId?: string;
projectId?: string;
},
) {
const url = new URL(`https://api.miro.com//v2/boards/${board_id}`);
const response = await fetch(url, {
method: "PATCH",
headers: {
"Content-Type": "application/json",
Authorization: "Bearer " + auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago