Introduction • Development Guide • Installation • Client Usage
Official Node client for Retable API v1.
Note
For the API documentation, please visit API Document.
To clone and run this application, you'll need Git and Node.js (which comes with npm) installed on your computer.
For building the package, from your command line:
# Clone this repository
$ git clone https://github.com/retable-io/retablejs
# Go into the repository
$ cd retablejs
# Install dependencies
$ npm install
# Build the package
$ npm run buildFor testing, from your command line:
# Go into the repository
$ cd retablejs
# Run the test script
$ npm run testnpm install retablejs-
Authorization
Warning
Your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error. You can generate an API Key from your User page at any time on Retable.io. This generated API Key is constant, when it is generated it never changes or is deleted. Though you can change its usable state on the same page. After obtaining your API Key (starts with RTBL-v1 prefix) you have to provide an apiKey header to every request. Otherwise, you will get an Unauthorized error.// CommonJS Import const Retable = require('retable'); // ES6 Import // Using TypeScript? Pass `esModuleInterop` in tsconfig.json import Retable from 'retable'; const client = new Retable({ apiKey: "RTBLv1-xxxxxxxxxxxxxxxxxxx" });
-
Error Handling
client.getWorkspace(workspace_id: string).then((p) => { // Do something }).catch(err => { err.detail; // Error detail err.status; // Error status code });
-
Function Detail
Function Description getWorkspaceGet a specific Workspace and its Projects getAllWorkspacesGet user's all Workspaces createWorkspaceCreate a new Workspace with a default Project deleteWorkspaceDelete a specific Workspace getWorkspaceProjectsGet all Projects that belong to a specific Workspace Function Description createProjectCreate a Project under the given Workspace with a default Retable getProjectGet a specific Project with Retables deleteProjectDelete a specific Project getProjectTablesGet all Retables that belong to a specific Project Function Description createTableCreate a new Retable under a specific Project getTableGet information about a specific Retable deleteColumnDelete column from a specific Retable addColumnCreate a new column on the specific Retable getRowReturns data of a specific Retable insertRowInsert row to a specific Retable updateRowUpdate row of a specific Retable deleteRowDelete row from a specific Retable client.getWorkspace(workspace_id: string).then(res => { res.data // workspace data object });
client.getAllWorkspaces().then(res => { res.data // workspace data object });
client.createWorkspace( { name: 'string', description: 'string' }).then(res => { res.data // workspace data object });
client.deleteWorkspace(workspace_id: string).then(res => { res.data // workspace data object });
https://api.retable.io/v1/public/workspace/{workspace_id}/project
client.getWorkspaceProjects(workspace_id: string).then(res => { res.data // workspace data object });
https://api.retable.io/v1/public/workspace/{workspace_id}/project
client.createProject(workspace_id: string, { name: 'string', description: 'string', color: 'string'; }).then(res => { res.data // project data object });
client.getProject(project_id: string).then(res => { res.data // project data object });
client.deleteProject(project_id: string).then(res => { res.data //project data object });
https://api.retable.io/v1/public/project/{project_id}/retable
client.getProjectTables(project_id: string).then(res => { res.data // project data object });
https://api.retable.io/v1/public/project/{project_id}/retable
client.createTable(project_id: string).then(res => { res.data // retable data object });
client.getTable(retable_id: string).then(res => { res.data // retable data object });
https://api.retable.io/v1/public/retable/{retable_id}/column
client.deleteColumn(retable_id: string,{ column_ids: [ "<column_id>", "<column_id>" ] }).then(res => { res.data // column data array });
https://api.retable.io/v1/public/retable/{retable_id}/column
client.addColumn(retable_id: string,{ columns: [ { title: "hello", type: "text" } ] }).then(res => { res.data // column data array });
client.getRow(retable_id: string).then(res => { res.data // row data object });
client.insertRow(retable_id: string,{ data: [ { columns: [ { column_id: "Bvt1FQhTyAPjmDx", cell_value: "Isengard" } ] }, { columns: [ { column_id: "Bvt1FQhTyAPjmDx", cell_value: "Rivendell" } ] } ] }).then(res => { res.data // row data object });
client.updateRow(retable_id: string,{ rows: [ { row_id: 2, columns: [ { column_id: "Bvt1FtQhTyAPjmDx", update_cell_value: "Mordor" } ] }, ] }).then(res => { res.data // row data array });
client.deleteRow(retable_id: string,{ row_ids: [ 1 ] }).then(res => { res.data // row data object });
