Reputation: 13296
From API:
Yet this fails:
Trello.rest('GET', `/members/me/boards/${id}`, {actions:['createBoard']})
with this error:
responseText:"Cannot GET /1/members/me/boards/fkdsjg412?key=14aeebb47bb7ce6b306894ccf6c5c4cf&token=618302133a76be5f3f631466f1989edcaca4156a92ae2175d0d25aee1065d4c3&actions%5B%5D=createBoard"
Upvotes: 1
Views: 178
Reputation: 13296
Ok, solved it:
Trello.rest('POST', `boards`, {name: boardName});
Still have not idea what the actions parameter I mentioned in the original question does.
Upvotes: 1