Skip to main content
PUT
/
table
/
{tableId}
/
plugin-context-menu
/
{pluginInstallId}
/
move
cURL
curl --request PUT \
  --url http://127.0.0.1:3000/api/table/{tableId}/plugin-context-menu/{pluginInstallId}/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "anchorId": "<string>",
  "position": "before"
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

tableId
string
required
pluginInstallId
string
required

Body

application/json
anchorId
string
required
position
enum<string>
required
Available options:
before,
after

Response

200

Plugin context menu moved successfully.

Last modified on February 20, 2026