Comments API

This page describes all the functions concerning the comments on Trello.

How can I access the functions of this category?

[ 1 ] - Open a ServerScript [ 2 ] - Look at the following script. (Example script to understand how to access a category and to a function)

-- // Require TrelloAPI Module
local TrelloAPI = require(game.ServerScriptService:WaitForChild("TrelloAPI"))

-- // Access to the category
TrelloAPI.CommentsAPI.[FunctionName]

CreateComment(CardId, Comment_Text)

Return the ID of the board, Return false if the function fail.

TrelloAPI.BoardsAPI.CreateComment("CARD_ID", "COMMENT_EXAMPLE_TEXT")

Last updated