I’m looking for help when creating a Board from a template via the API. Once the board is create the API returns the ID of the board but the board is not visible in the UI or API. When I look for the board by editing the URL and inserting the returned ID the UI says the board is deleted. And the board is not in the recycle bin. Checking the Activity Log on the account (via the API) shows no delete board events.
Of note is that these boards are being created from a template at the same time as four others from another template which do not disappear after creation. Could this be a permissions issue? Perhaps, but both templates seem to have the same permissions.
Included here is the GraphQL and the response
mutation {create_board (
template_id: 2988420389,
board_name: "O'Rourke - Detail",
board_kind: share
, workspace_id: 1749130
)
{id}
}
Response:
{"data":{"create_board":{"id":"3027840249"}},"account_id":5493834}
Via the Monday UI I can create a board from either template.
Any help would be greatly appreciated.