Skip to main content
GET
/
table
/
{tableId}
/
plugin-context-menu
cURL
curl --request GET \
  --url http://127.0.0.1:3000/api/table/{tableId}/plugin-context-menu \
  --header 'Authorization: Bearer <token>'
[
  {
    "pluginInstallId": "<string>",
    "name": "<string>",
    "pluginId": "<string>",
    "logo": "<string>",
    "order": 123
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

tableId
string
required

Response

200 - application/json

Returns a list of plugins

pluginInstallId
string
required
name
string
required
pluginId
string
required
order
number
required
Last modified on December 10, 2025