Hi community.
I want to develop an application that use card metadata.
Unfortunately, I can add metadata to the card with JavaScript SDK, but I can’t get it with REST API.
Do you know why?
Reproduction procedure
(0) Create Application
https://developers.miro.com/docs/getting-started
(1) Create a card with SDK
await miro.board.widgets.create({
type: "card",
text: "test card",
metadata: {
appId]: {
hoge: true,
},
}
})
(2) Get the card with REST API
curl --request GET \ --url https://api.miro.com/v1/boards/${board_id}/widgets/${widget_id}\ --header 'authorization: Bearer ${token}'
→ No metadata
Thank you.