//native
type Smartsheet = {
token: string;
baseUrl: string;
};
/**
* Create a comment
* Adds a comment to a discussion. To create a comment with an attachment please use "multipart/form-data" content type.
*/
export async function main(
auth: Smartsheet,
sheetId: string,
discussionId: string,
body: { text?: string },
) {
const url = new URL(
`${auth.baseUrl}/sheets/${sheetId}/discussions/${discussionId}/comments`,
);
const formData = new FormData();
for (const [k, v] of Object.entries(body)) {
if (v !== undefined && v !== "") {
formData.append(k, String(v));
}
}
const response = await fetch(url, {
method: "POST",
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