curl --request PATCH \
--url http://127.0.0.1:3000/api/table/{tableId}/plugin-panel/{pluginPanelId}/layout \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"layout": [
{
"pluginInstallId": "<string>",
"x": 123,
"y": 123,
"w": 123,
"h": 123
}
]
}
'