mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 00:16:50 +00:00
fix(docs): broken pages
This commit is contained in:
@@ -13,7 +13,7 @@ You may also interact with the API's resources via <a href="/0.109.7/developer-r
|
||||
|
||||
:::note
|
||||
|
||||
Currently, the default value for {orgs} is <b>noco</b>. Users will be able to change it in the future release.
|
||||
Currently, the default value for `{orgs}` is <b>noco</b>. Users will be able to change it in the future release.
|
||||
|
||||
:::
|
||||
|
||||
@@ -26,145 +26,145 @@ Currently, the default value for {orgs} is <b>noco</b>. Users will be able to ch
|
||||
| Auth | Get | auth | me | /api/v1/auth/user/me |
|
||||
| Auth | Post | auth | passwordForgot | /api/v1/auth/password/forgot |
|
||||
| Auth | Post | auth | passwordChange | /api/v1/auth/password/change |
|
||||
| Auth | Post | auth | passwordReset | /api/v1/auth/password/reset/{token} |
|
||||
| Auth | Post | auth | passwordReset | /api/v1/auth/password/reset/`{token}` |
|
||||
| Auth | Post | auth | tokenRefresh | /api/v1/auth/token/refresh |
|
||||
| Auth | Post | auth | passwordResetTokenValidate | /api/v1/auth/token/validate/{token} |
|
||||
| Auth | Post | auth | emailValidate | /api/v1/auth/email/validate/{email} |
|
||||
| Auth | Post | auth | passwordResetTokenValidate | /api/v1/auth/token/validate/`{token}` |
|
||||
| Auth | Post | auth | emailValidate | /api/v1/auth/email/validate/`{email}` |
|
||||
|
||||
### Public APIs
|
||||
|
||||
| Category | Method | Tag | Function Name | Path |
|
||||
|---|---|---|---|---|
|
||||
| Public | Get | public | sharedBaseGet | /api/v1/db/public/shared-base/{sharedBaseUuid}/meta |
|
||||
| Public | Post | public | dataList | /api/v1/db/public/shared-view/{sharedViewUuid}/rows |
|
||||
| Public | Get | public | dataNestedList | /api/v1/db/public/shared-view/{sharedViewUuid}/rows/{rowId}/{relationType}/{columnName} |
|
||||
| Public | Post | public | dataCreate | /api/v1/db/public/shared-view/{sharedViewUuid}/rows |
|
||||
| Public | Get | public | csvExport | /api/v1/db/public/shared-view/{sharedViewUuid}/rows/export/{type} |
|
||||
| Public | Get | public | dataRelationList | /api/v1/db/public/shared-view/{sharedViewUuid}/nested/{columnName} |
|
||||
| Public | Get | public | sharedViewMetaGet | /api/v1/db/public/shared-view/{sharedViewUuid}/meta |
|
||||
| Public | Get | public | groupedDataList | /api/v1/db/public/shared-view/{sharedViewUuid}/group/{columnId} |
|
||||
| Public | Get | public | sharedBaseGet | /api/v1/db/public/shared-base/`{sharedBaseUuid}`/meta |
|
||||
| Public | Post | public | dataList | /api/v1/db/public/shared-view/`{sharedViewUuid}`/rows |
|
||||
| Public | Get | public | dataNestedList | /api/v1/db/public/shared-view/`{sharedViewUuid}`/rows/`{rowId}`/`{relationType}`/`{columnName}` |
|
||||
| Public | Post | public | dataCreate | /api/v1/db/public/shared-view/`{sharedViewUuid}`/rows |
|
||||
| Public | Get | public | csvExport | /api/v1/db/public/shared-view/`{sharedViewUuid}`/rows/export/`{type}` |
|
||||
| Public | Get | public | dataRelationList | /api/v1/db/public/shared-view/`{sharedViewUuid}`/nested/`{columnName}` |
|
||||
| Public | Get | public | sharedViewMetaGet | /api/v1/db/public/shared-view/`{sharedViewUuid}`/meta |
|
||||
| Public | Get | public | groupedDataList | /api/v1/db/public/shared-view/`{sharedViewUuid}`/group/`{columnId}` |
|
||||
|
||||
### Data APIs
|
||||
|
||||
| Category | Method | Tag | Function Name | Path |
|
||||
|---|---|---|---|---|
|
||||
| Data | Delete| dbTableRow | bulkDelete | /api/v1/db/data/bulk/{orgs}/{projectName}/{tableName}/ |
|
||||
| Data | Post | dbTableRow | bulkCreate | /api/v1/db/data/bulk/{orgs}/{projectName}/{tableName}/ |
|
||||
| Data | Patch | dbTableRow | bulkUpdate | /api/v1/db/data/bulk/{orgs}/{projectName}/{tableName}/ |
|
||||
| Data | Patch | dbTableRow | bulkUpdateAll | /api/v1/db/data/bulk/{orgs}/{projectName}/{tableName}/all |
|
||||
| Data | Delete| dbTableRow | bulkDeleteAll | /api/v1/db/data/bulk/{orgs}/{projectName}/{tableName}/all |
|
||||
| Data | Get | dbTableRow | list | /api/v1/db/data/{orgs}/{projectName}/{tableName} |
|
||||
| Data | Get | dbTableRow | findOne | /api/v1/db/data/{orgs}/{projectName}/{tableName}/find-one |
|
||||
| Data | Get | dbTableRow | groupBy | /api/v1/db/data/{orgs}/{projectName}/{tableName}/groupby |
|
||||
| Data | Get | dbTableRow | exist | /api/v1/db/data/{orgs}/{projectName}/{tableName}/{rowId}/exist |
|
||||
| Data | Post | dbTableRow | create | /api/v1/db/data/{orgs}/{projectName}/{tableName} |
|
||||
| Data | Get | dbTableRow | read | /api/v1/db/data/{orgs}/{projectName}/{tableName}/{rowId} |
|
||||
| Data | Patch | dbTableRow | update | /api/v1/db/data/{orgs}/{projectName}/{tableName}/{rowId} |
|
||||
| Data | Delete| dbTableRow | delete | /api/v1/db/data/{orgs}/{projectName}/{tableName}/{rowId} |
|
||||
| Data | Get | dbTableRow | count | /api/v1/db/data/{orgs}/{projectName}/{tableName}/count |
|
||||
| Data | Get | dbTableRow | groupedDataList | /api/v1/db/data/{orgs}/{projectName}/{tableName}/group/{columnId} |
|
||||
| Data | Get | dbViewRow | list | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName} |
|
||||
| Data | Get | dbViewRow | findOne | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/find-one |
|
||||
| Data | Get | dbViewRow | groupBy | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/groupby |
|
||||
| Data | Get | dbViewRow | exist | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/{rowId}/exist |
|
||||
| Data | Post | dbViewRow | create | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName} |
|
||||
| Data | Get | dbViewRow | read | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/{rowId} |
|
||||
| Data | Patch | dbViewRow | update | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/{rowId} |
|
||||
| Data | Delete| dbViewRow | delete | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/{rowId} |
|
||||
| Data | Get | dbViewRow | count | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/count |
|
||||
| Data | Get | dbViewRow | groupedDataList | /api/v1/db/data/{orgs}/{projectName}/{tableName}/views/{viewName}/group/{columnId} |
|
||||
| Data | Delete| dbTableRow | bulkDelete | /api/v1/db/data/bulk/`{orgs}`/`{projectName}`/`{tableName}`/ |
|
||||
| Data | Post | dbTableRow | bulkCreate | /api/v1/db/data/bulk/`{orgs}`/`{projectName}`/`{tableName}`/ |
|
||||
| Data | Patch | dbTableRow | bulkUpdate | /api/v1/db/data/bulk/`{orgs}`/`{projectName}`/`{tableName}`/ |
|
||||
| Data | Patch | dbTableRow | bulkUpdateAll | /api/v1/db/data/bulk/`{orgs}`/`{projectName}`/`{tableName}`/all |
|
||||
| Data | Delete| dbTableRow | bulkDeleteAll | /api/v1/db/data/bulk/`{orgs}`/`{projectName}`/`{tableName}`/all |
|
||||
| Data | Get | dbTableRow | list | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}` |
|
||||
| Data | Get | dbTableRow | findOne | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/find-one |
|
||||
| Data | Get | dbTableRow | groupBy | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/groupby |
|
||||
| Data | Get | dbTableRow | exist | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/`{rowId}`/exist |
|
||||
| Data | Post | dbTableRow | create | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}` |
|
||||
| Data | Get | dbTableRow | read | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/`{rowId}` |
|
||||
| Data | Patch | dbTableRow | update | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/`{rowId}` |
|
||||
| Data | Delete| dbTableRow | delete | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/`{rowId}` |
|
||||
| Data | Get | dbTableRow | count | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/count |
|
||||
| Data | Get | dbTableRow | groupedDataList | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/group/`{columnId}` |
|
||||
| Data | Get | dbViewRow | list | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}` |
|
||||
| Data | Get | dbViewRow | findOne | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/find-one |
|
||||
| Data | Get | dbViewRow | groupBy | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/groupby |
|
||||
| Data | Get | dbViewRow | exist | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/`{rowId}`/exist |
|
||||
| Data | Post | dbViewRow | create | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}` |
|
||||
| Data | Get | dbViewRow | read | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/`{rowId}` |
|
||||
| Data | Patch | dbViewRow | update | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/`{rowId}` |
|
||||
| Data | Delete| dbViewRow | delete | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/`{rowId}` |
|
||||
| Data | Get | dbViewRow | count | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/count |
|
||||
| Data | Get | dbViewRow | groupedDataList | /api/v1/db/data/`{orgs}`/`{projectName}`/`{tableName}`/views/`{viewName}`/group/`{columnId}` |
|
||||
|
||||
### Meta APIs
|
||||
|
||||
| Category | Method | Tag | Function Name | Path |
|
||||
|---|---|---|---|---|
|
||||
| Meta | Get | apiToken | list | /api/v1/db/meta/projects/{projectId}/api-tokens |
|
||||
| Meta | Post | apiToken | create | /api/v1/db/meta/projects/{projectId}/api-tokens |
|
||||
| Meta | Delete| apiToken | delete | /api/v1/db/meta/projects/{projectId}/api-tokens/{token} |
|
||||
| Meta | Get | auth | projectUserList | /api/v1/db/meta/projects/{projectId}/users |
|
||||
| Meta | Post | auth | projectUserAdd | /api/v1/db/meta/projects/{projectId}/users |
|
||||
| Meta | Patch | auth | projectUserUpdate | /api/v1/db/meta/projects/{projectId}/users/{userId} |
|
||||
| Meta | Delete| auth | projectUserRemove | /api/v1/db/meta/projects/{projectId}/users/{userId} |
|
||||
| Meta | Post | auth | projectUserResendInvite | /api/v1/db/meta/projects/{projectId}/users/{userId}/resend-invite |
|
||||
| Meta | Post | dbTable | create | /api/v1/db/meta/projects/{projectId}/tables |
|
||||
| Meta | Get | dbTable | list | /api/v1/db/meta/projects/{projectId}/tables |
|
||||
| Meta | Post | dbTableColumn | create | /api/v1/db/meta/tables/{tableId}/columns |
|
||||
| Meta | Patch | dbTableColumn | update | /api/v1/db/meta/tables/{tableId}/columns/{columnId} |
|
||||
| Meta | Delete| dbTableColumn | delete | /api/v1/db/meta/tables/{tableId}/columns/{columnId} |
|
||||
| Meta | Post | dbTableColumn | primaryColumnSet | /api/v1/db/meta/tables/{tableId}/columns/{columnId}/primary |
|
||||
| Meta | Get | dbTableFilter | get | /api/v1/db/meta/filters/{filterId} |
|
||||
| Meta | Patch | dbTableFilter | update | /api/v1/db/meta/filters/{filterId} |
|
||||
| Meta | Delete| dbTableFilter | delete | /api/v1/db/meta/filters/{filterId} |
|
||||
| Meta | Get | dbTableFilter | read | /api/v1/db/meta/views/{viewId}/filters |
|
||||
| Meta | Post | dbTableFilter | create | /api/v1/db/meta/views/{viewId}/filters |
|
||||
| Meta | Get | dbTableFilter | get | /api/v1/db/meta/filters/{filterId} |
|
||||
| Meta | Patch | dbTableFilter | update | /api/v1/db/meta/filters/{filterId} |
|
||||
| Meta | Delete| dbTableFilter | delete | /api/v1/db/meta/filters/{filterId} |
|
||||
| Meta | Get | dbTableFilter | childrenRead | /api/v1/db/meta/filters/{filterGroupId}/children |
|
||||
| Meta | Get | dbTableSort | list | /api/v1/db/meta/views/{viewId}/sorts |
|
||||
| Meta | Post | dbTableSort | create | /api/v1/db/meta/views/{viewId}/sorts |
|
||||
| Meta | Get | dbTableSort | read | /api/v1/db/meta/sorts/{sortId} |
|
||||
| Meta | Patch | dbTableSort | update | /api/v1/db/meta/sorts/{sortId} |
|
||||
| Meta | Delete| dbTableSort | delete | /api/v1/db/meta/sorts/{sortId}/api/v1/db |
|
||||
| Meta | Patch | dbTableWebhook | update | /api/v1/db/meta/hooks/{hookId} |
|
||||
| Meta | Delete| dbTableWebhook | delete | /api/v1/db/meta/hooks/{hookId} |
|
||||
| Meta | Get | dbTableWebhook | list | /api/v1/db/meta/tables/{tableId}/hooks |
|
||||
| Meta | Post | dbTableWebhook | create | /api/v1/db/meta/tables/{tableId}/hooks |
|
||||
| Meta | Post | dbTableWebhook | test | /api/v1/db/meta/tables/{tableId}/hooks/test |
|
||||
| Meta | Get | dbTableWebhook | samplePayloadGet | /api/v1/db/meta/tables/{tableId}/hooks/samplePayload/{operation} |
|
||||
| Meta | Get | dbTableWebhookFilter | read | /api/v1/db/meta/hooks/{hookId}/filters |
|
||||
| Meta | Post | dbTableWebhookFilter | create | /api/v1/db/meta/hooks/{hookId}/filters |
|
||||
| Meta | Get | dbView | list | /api/v1/db/meta/tables/{tableId}/views |
|
||||
| Meta | Get | dbView | read | /api/v1/db/meta/tables/{tableId} |
|
||||
| Meta | Patch | dbView | update | /api/v1/db/meta/tables/{tableId} |
|
||||
| Meta | Delete| dbView | delete | /api/v1/db/meta/tables/{tableId} |
|
||||
| Meta | Post | dbView | reorder | /api/v1/db/meta/tables/{tableId}/reorder |
|
||||
| Meta | Post | dbView | formCreate | /api/v1/db/meta/tables/{tableId}/forms |
|
||||
| Meta | Patch | dbView | formUpdate | /api/v1/db/meta/forms/{formViewId} |
|
||||
| Meta | Get | dbView | formRead | /api/v1/db/meta/forms/{formViewId} |
|
||||
| Meta | Patch | dbView | formColumnUpdate | /api/v1/db/meta/form-columns/{formViewColumnId} |
|
||||
| Meta | Post | dbView | galleryCreate | /api/v1/db/meta/tables/{tableId}/galleries |
|
||||
| Meta | Patch | dbView | galleryUpdate | /api/v1/db/meta/galleries/{galleryViewId} |
|
||||
| Meta | Get | dbView | galleryRead | /api/v1/db/meta/galleries/{galleryViewId} |
|
||||
| Meta | Post | dbView | kanbanCreate | /api/v1/db/meta/tables/{tableId}/kanbans |
|
||||
| Meta | Patch | dbView | kanbanUpdate | /api/v1/db/meta/kanban/{kanbanViewId} |
|
||||
| Meta | Get | dbView | kanbanRead | /api/v1/db/meta/kanbans/{kanbanViewId} |
|
||||
| Meta | Post | dbView | mapCreate | /api/v1/db/meta/tables/{tableId}/maps |
|
||||
| Meta | Patch | dbView | mapUpdate | /api/v1/db/meta/maps/{mapViewId} |
|
||||
| Meta | Get | dbView | mapRead | /api/v1/db/meta/maps/{mapViewId} |
|
||||
| Meta | Post | dbView | gridCreate | /api/v1/db/meta/tables/{tableId}/grids |
|
||||
| Meta | Get | dbView | gridColumnsList | /api/v1/db/meta/grids/{gridId}/grid-columns |
|
||||
| Meta | Patch | dbView | gridColumnUpdate | /api/v1/db/meta/grid-columns/{columnId} |
|
||||
| Meta | Patch | dbView | update | /api/v1/db/meta/views/{viewId} |
|
||||
| Meta | Delete| dbView | delete | /api/v1/db/meta/views/{viewId} |
|
||||
| Meta | Post | dbView | showAllColumn | /api/v1/db/meta/views/{viewId}/show-all |
|
||||
| Meta | Post | dbView | hideAllColumn | /api/v1/db/meta/views/{viewId}/hide-all |
|
||||
| Meta | Get | dbViewColumn | list | /api/v1/db/meta/views/{viewId}/columns |
|
||||
| Meta | Post | dbViewColumn | create | /api/v1/db/meta/views/{viewId}/columns |
|
||||
| Meta | Patch | dbViewColumn | update | /api/v1/db/meta/views/{viewId}/columns/{columnId} |
|
||||
| Meta | Get | dbViewShare | list | /api/v1/db/meta/views/{viewId}/share |
|
||||
| Meta | Post | dbViewShare | create | /api/v1/db/meta/views/{viewId}/share |
|
||||
| Meta | Patch | dbViewShare | update | /api/v1/db/meta/views/{viewId}/share |
|
||||
| Meta | Delete| dbViewShare | delete | /api/v1/db/meta/views/{viewId}/share |
|
||||
| Meta | Get | apiToken | list | /api/v1/db/meta/projects/`{projectId}`/api-tokens |
|
||||
| Meta | Post | apiToken | create | /api/v1/db/meta/projects/`{projectId}`/api-tokens |
|
||||
| Meta | Delete| apiToken | delete | /api/v1/db/meta/projects/`{projectId}`/api-tokens/`{token}` |
|
||||
| Meta | Get | auth | projectUserList | /api/v1/db/meta/projects/`{projectId}`/users |
|
||||
| Meta | Post | auth | projectUserAdd | /api/v1/db/meta/projects/`{projectId}`/users |
|
||||
| Meta | Patch | auth | projectUserUpdate | /api/v1/db/meta/projects/`{projectId}`/users/`{userId}` |
|
||||
| Meta | Delete| auth | projectUserRemove | /api/v1/db/meta/projects/`{projectId}`/users/`{userId}` |
|
||||
| Meta | Post | auth | projectUserResendInvite | /api/v1/db/meta/projects/`{projectId}`/users/`{userId}`/resend-invite |
|
||||
| Meta | Post | dbTable | create | /api/v1/db/meta/projects/`{projectId}`/tables |
|
||||
| Meta | Get | dbTable | list | /api/v1/db/meta/projects/`{projectId}`/tables |
|
||||
| Meta | Post | dbTableColumn | create | /api/v1/db/meta/tables/`{tableId}`/columns |
|
||||
| Meta | Patch | dbTableColumn | update | /api/v1/db/meta/tables/`{tableId}`/columns/`{columnId}` |
|
||||
| Meta | Delete| dbTableColumn | delete | /api/v1/db/meta/tables/`{tableId}`/columns/`{columnId}` |
|
||||
| Meta | Post | dbTableColumn | primaryColumnSet | /api/v1/db/meta/tables/`{tableId}`/columns/`{columnId}`/primary |
|
||||
| Meta | Get | dbTableFilter | get | /api/v1/db/meta/filters/`{filterId}` |
|
||||
| Meta | Patch | dbTableFilter | update | /api/v1/db/meta/filters/`{filterId}` |
|
||||
| Meta | Delete| dbTableFilter | delete | /api/v1/db/meta/filters/`{filterId}` |
|
||||
| Meta | Get | dbTableFilter | read | /api/v1/db/meta/views/`{viewId}`/filters |
|
||||
| Meta | Post | dbTableFilter | create | /api/v1/db/meta/views/`{viewId}`/filters |
|
||||
| Meta | Get | dbTableFilter | get | /api/v1/db/meta/filters/`{filterId}` |
|
||||
| Meta | Patch | dbTableFilter | update | /api/v1/db/meta/filters/`{filterId}` |
|
||||
| Meta | Delete| dbTableFilter | delete | /api/v1/db/meta/filters/`{filterId}` |
|
||||
| Meta | Get | dbTableFilter | childrenRead | /api/v1/db/meta/filters/`{filterGroupId}`/children |
|
||||
| Meta | Get | dbTableSort | list | /api/v1/db/meta/views/`{viewId}`/sorts |
|
||||
| Meta | Post | dbTableSort | create | /api/v1/db/meta/views/`{viewId}`/sorts |
|
||||
| Meta | Get | dbTableSort | read | /api/v1/db/meta/sorts/`{sortId}` |
|
||||
| Meta | Patch | dbTableSort | update | /api/v1/db/meta/sorts/`{sortId}` |
|
||||
| Meta | Delete| dbTableSort | delete | /api/v1/db/meta/sorts/`{sortId}`/api/v1/db |
|
||||
| Meta | Patch | dbTableWebhook | update | /api/v1/db/meta/hooks/`{hookId}` |
|
||||
| Meta | Delete| dbTableWebhook | delete | /api/v1/db/meta/hooks/`{hookId}` |
|
||||
| Meta | Get | dbTableWebhook | list | /api/v1/db/meta/tables/`{tableId}`/hooks |
|
||||
| Meta | Post | dbTableWebhook | create | /api/v1/db/meta/tables/`{tableId}`/hooks |
|
||||
| Meta | Post | dbTableWebhook | test | /api/v1/db/meta/tables/`{tableId}`/hooks/test |
|
||||
| Meta | Get | dbTableWebhook | samplePayloadGet | /api/v1/db/meta/tables/`{tableId}`/hooks/samplePayload/`{operation}` |
|
||||
| Meta | Get | dbTableWebhookFilter | read | /api/v1/db/meta/hooks/`{hookId}`/filters |
|
||||
| Meta | Post | dbTableWebhookFilter | create | /api/v1/db/meta/hooks/`{hookId}`/filters |
|
||||
| Meta | Get | dbView | list | /api/v1/db/meta/tables/`{tableId}`/views |
|
||||
| Meta | Get | dbView | read | /api/v1/db/meta/tables/`{tableId}` |
|
||||
| Meta | Patch | dbView | update | /api/v1/db/meta/tables/`{tableId}` |
|
||||
| Meta | Delete| dbView | delete | /api/v1/db/meta/tables/`{tableId}` |
|
||||
| Meta | Post | dbView | reorder | /api/v1/db/meta/tables/`{tableId}`/reorder |
|
||||
| Meta | Post | dbView | formCreate | /api/v1/db/meta/tables/`{tableId}`/forms |
|
||||
| Meta | Patch | dbView | formUpdate | /api/v1/db/meta/forms/`{formViewId}` |
|
||||
| Meta | Get | dbView | formRead | /api/v1/db/meta/forms/`{formViewId}` |
|
||||
| Meta | Patch | dbView | formColumnUpdate | /api/v1/db/meta/form-columns/`{formViewColumnId}` |
|
||||
| Meta | Post | dbView | galleryCreate | /api/v1/db/meta/tables/`{tableId}`/galleries |
|
||||
| Meta | Patch | dbView | galleryUpdate | /api/v1/db/meta/galleries/`{galleryViewId}` |
|
||||
| Meta | Get | dbView | galleryRead | /api/v1/db/meta/galleries/`{galleryViewId}` |
|
||||
| Meta | Post | dbView | kanbanCreate | /api/v1/db/meta/tables/`{tableId}`/kanbans |
|
||||
| Meta | Patch | dbView | kanbanUpdate | /api/v1/db/meta/kanban/`{kanbanViewId}` |
|
||||
| Meta | Get | dbView | kanbanRead | /api/v1/db/meta/kanbans/`{kanbanViewId}` |
|
||||
| Meta | Post | dbView | mapCreate | /api/v1/db/meta/tables/`{tableId}`/maps |
|
||||
| Meta | Patch | dbView | mapUpdate | /api/v1/db/meta/maps/`{mapViewId}` |
|
||||
| Meta | Get | dbView | mapRead | /api/v1/db/meta/maps/`{mapViewId}` |
|
||||
| Meta | Post | dbView | gridCreate | /api/v1/db/meta/tables/`{tableId}`/grids |
|
||||
| Meta | Get | dbView | gridColumnsList | /api/v1/db/meta/grids/`{gridId}`/grid-columns |
|
||||
| Meta | Patch | dbView | gridColumnUpdate | /api/v1/db/meta/grid-columns/`{columnId}` |
|
||||
| Meta | Patch | dbView | update | /api/v1/db/meta/views/`{viewId}` |
|
||||
| Meta | Delete| dbView | delete | /api/v1/db/meta/views/`{viewId}` |
|
||||
| Meta | Post | dbView | showAllColumn | /api/v1/db/meta/views/`{viewId}`/show-all |
|
||||
| Meta | Post | dbView | hideAllColumn | /api/v1/db/meta/views/`{viewId}`/hide-all |
|
||||
| Meta | Get | dbViewColumn | list | /api/v1/db/meta/views/`{viewId}`/columns |
|
||||
| Meta | Post | dbViewColumn | create | /api/v1/db/meta/views/`{viewId}`/columns |
|
||||
| Meta | Patch | dbViewColumn | update | /api/v1/db/meta/views/`{viewId}`/columns/`{columnId}` |
|
||||
| Meta | Get | dbViewShare | list | /api/v1/db/meta/views/`{viewId}`/share |
|
||||
| Meta | Post | dbViewShare | create | /api/v1/db/meta/views/`{viewId}`/share |
|
||||
| Meta | Patch | dbViewShare | update | /api/v1/db/meta/views/`{viewId}`/share |
|
||||
| Meta | Delete| dbViewShare | delete | /api/v1/db/meta/views/`{viewId}`/share |
|
||||
| Meta | Get | plugin | list | /api/v1/db/meta/plugins |
|
||||
| Meta | Get | plugin | status | /api/v1/db/meta/plugins/{pluginTitle}/status |
|
||||
| Meta | Get | plugin | status | /api/v1/db/meta/plugins/`{pluginTitle}`/status |
|
||||
| Meta | Post | plugin | test | /api/v1/db/meta/plugins/test |
|
||||
| Meta | PATCH | plugin | update | /api/v1/db/meta/plugins/{pluginId} |
|
||||
| Meta | Get | plugin | read | /api/v1/db/meta/plugins/{pluginId} |
|
||||
| Meta | Get | project | metaGet | /api/v1/db/meta/projects/{projectId}/info |
|
||||
| Meta | Get | project | modelVisibilityList | /api/v1/db/meta/projects/{projectId}/visibility-rules |
|
||||
| Meta | Post | project | modelVisibilitySet | /api/v1/db/meta/projects/{projectId}/visibility-rules |
|
||||
| Meta | PATCH | plugin | update | /api/v1/db/meta/plugins/`{pluginId}` |
|
||||
| Meta | Get | plugin | read | /api/v1/db/meta/plugins/`{pluginId}` |
|
||||
| Meta | Get | project | metaGet | /api/v1/db/meta/projects/`{projectId}`/info |
|
||||
| Meta | Get | project | modelVisibilityList | /api/v1/db/meta/projects/`{projectId}`/visibility-rules |
|
||||
| Meta | Post | project | modelVisibilitySet | /api/v1/db/meta/projects/`{projectId}`/visibility-rules |
|
||||
| Meta | Get | project | list | /api/v1/db/meta/projects |
|
||||
| Meta | Post | project | create | /api/v1/db/meta/projects |
|
||||
| Meta | Get | project | read | /api/v1/db/meta/projects/{projectId} |
|
||||
| Meta | Delete| project | delete | /api/v1/db/meta/projects/{projectId} |
|
||||
| Meta | Get | project | auditList | /api/v1/db/meta/projects/{projectId}/audits |
|
||||
| Meta | Get | project | metaDiffGet | /api/v1/db/meta/projects/{projectId}/meta-diff |
|
||||
| Meta | Post | project | metaDiffSync | /api/v1/db/meta/projects/{projectId}/meta-diff |
|
||||
| Meta | Get | project | sharedBaseGet | /api/v1/db/meta/projects/{projectId}/shared |
|
||||
| Meta | Delete| project | sharedBaseDisable | /api/v1/db/meta/projects/{projectId}/shared |
|
||||
| Meta | Post | project | sharedBaseCreate | /api/v1/db/meta/projects/{projectId}/shared |
|
||||
| Meta | Patch | project | sharedBaseUpdate | /api/v1/db/meta/projects/{projectId}/shared |
|
||||
| Meta | Get | project | read | /api/v1/db/meta/projects/`{projectId}` |
|
||||
| Meta | Delete| project | delete | /api/v1/db/meta/projects/`{projectId}` |
|
||||
| Meta | Get | project | auditList | /api/v1/db/meta/projects/`{projectId}`/audits |
|
||||
| Meta | Get | project | metaDiffGet | /api/v1/db/meta/projects/`{projectId}`/meta-diff |
|
||||
| Meta | Post | project | metaDiffSync | /api/v1/db/meta/projects/`{projectId}`/meta-diff |
|
||||
| Meta | Get | project | sharedBaseGet | /api/v1/db/meta/projects/`{projectId}`/shared |
|
||||
| Meta | Delete| project | sharedBaseDisable | /api/v1/db/meta/projects/`{projectId}`/shared |
|
||||
| Meta | Post | project | sharedBaseCreate | /api/v1/db/meta/projects/`{projectId}`/shared |
|
||||
| Meta | Patch | project | sharedBaseUpdate | /api/v1/db/meta/projects/`{projectId}`/shared |
|
||||
| Meta | Post | storage | upload | /api/v1/db/storage/upload |
|
||||
| Meta | Post | storage | uploadByUrl | /api/v1/db/storage/upload-by-url |
|
||||
| Meta | Get | utils | commentList | /api/v1/db/meta/audits/comments |
|
||||
@@ -180,11 +180,11 @@ Currently, the default value for {orgs} is <b>noco</b>. Users will be able to ch
|
||||
| Meta | Get | utils | aggregatedMetaInfo | /api/v1/aggregated-meta-info |
|
||||
| Meta | Get | orgUsers | list | /api/v1/users |
|
||||
| Meta | Post | orgUsers | add | /api/v1/users |
|
||||
| Meta | Patch | orgUsers | update | /api/v1/users/{userId} |
|
||||
| Meta | Delete | orgUsers | delete | /api/v1/users/{userId} |
|
||||
| Meta | Patch | orgUsers | update | /api/v1/users/`{userId}` |
|
||||
| Meta | Delete | orgUsers | delete | /api/v1/users/`{userId}` |
|
||||
| Meta | Get | orgTokens | list | /api/v1/tokens |
|
||||
| Meta | Post | orgTokens | create | /api/v1/tokens |
|
||||
| Meta | Delete | orgTokens | delete | /api/v1/tokens/{token} |
|
||||
| Meta | Delete | orgTokens | delete | /api/v1/tokens/`{token}` |
|
||||
| Meta | Get | orgAppSettings | get | /api/v1/app-settings |
|
||||
| Meta | Post | orgAppSettings | set | /api/v1/app-settings |
|
||||
|
||||
|
||||
@@ -61,7 +61,7 @@ For Tag and FunctionName, please check out the API table <a href="/0.109.7/devel
|
||||
|
||||
:::
|
||||
|
||||
#### Example: Calling API - /api/v1/db/meta/projects/{projectId}/tables
|
||||
#### Example: Calling API - /api/v1/db/meta/projects/`{projectId}`/tables
|
||||
|
||||
```js
|
||||
await api.dbTable.create(params)
|
||||
|
||||
@@ -148,7 +148,7 @@ Detailed procedure for discord webhook described [here](https://support.discord.
|
||||
- **Select Discord Channels**: Select from the drop down list, channel name configured in Step (2). Please click on 'Reload' if drop down list is empty.
|
||||
- **Body**: Message to be posted over Discord channel, via webhooks on trigger of configured event.
|
||||
- Body can contain plain text &
|
||||
- Handlebars {{ }}
|
||||
- Handlebars `{{ }}`
|
||||
|
||||
|
||||
## Slack
|
||||
@@ -199,7 +199,7 @@ Detailed procedure for discord webhook described [here](https://support.discord.
|
||||
### 3. Configure
|
||||
|
||||
- Open project and choose a table.
|
||||
- Click 'More' > 'Webhooks'.
|
||||
- Click 'More' {">"} 'Webhooks'.
|
||||
- Click 'Create webhook'
|
||||
- Configure webhook
|
||||
- **Title**: Name of your choice to identify this Webhook.
|
||||
@@ -212,7 +212,7 @@ Detailed procedure for discord webhook described [here](https://support.discord.
|
||||
- **Select Teams Channels**: Select from the drop down list, channel name configured in Step (2). Please click on 'Reload' if drop down list is empty.
|
||||
- **Body**: Message to be posted over Teams channel, via webhooks on trigger of configured event.
|
||||
- Body can contain plain text &
|
||||
- Handlebars {{ }}
|
||||
- Handlebars `{{ }}`
|
||||
|
||||
## Webhook V2
|
||||
|
||||
|
||||
Reference in New Issue
Block a user