Optional requestFactory: RowsApiRequestFactoryOptional responseProcessor: RowsApiResponseProcessorPrivate apiThe ID or name of the table
The ID of the row
Optional _options: ConfigurationAdd a new row to a HubDB table. New rows will be added to the draft version of the table. Use publish endpoint to push these changes to published version.
Add a new row to a table
The ID or name of the target table.
The row definition JSON, formatted as described above.
Optional _options: ConfigurationGet a single row by ID from a table's draft version.
Get a row from the draft table
The ID or name of the table
The ID of the row
Optional _options: ConfigurationGet a single row by ID from a table's published version. Note: This endpoint can be accessed without any authentication, if the table is set to be allowed for public access.
Get a table row
The ID or name of the table
The ID of the row
Optional _options: ConfigurationReturns a set of rows in the published version of the specified table. Row results can be filtered and sorted. Filtering and sorting options will be sent as query parameters to the API request. For example, by adding the query parameters column1__gt=5&sort=-column1, API returns the rows with values for column column1 greater than 5 and in the descending order of column1 values. Refer to the overview section for detailed filtering and sorting options. Note: This endpoint can be accessed without any authentication, if the table is set to be allowed for public access.
Get rows for a table
The ID or name of the table to query.
Optional sort: string[]Specifies the column names to sort the results by. See the above description for more details.
Optional after: stringThe cursor token value to get the next set of results. You can get this from the `paging.next.after` JSON property of a paged response containing more results.
Optional limit: numberThe maximum number of results to return. Default is `1000`.
Optional properties: string[]Specify the column names to get results containing only the required columns instead of all column details.
Optional _options: ConfigurationPermanently deletes a row from a table's draft version.
Permanently deletes a row
The ID or name of the table
The ID of the row
Optional _options: ConfigurationReturns rows in the draft version of the specified table. Row results can be filtered and sorted. Filtering and sorting options will be sent as query parameters to the API request. For example, by adding the query parameters column1__gt=5&sort=-column1, API returns the rows with values for column column1 greater than 5 and in the descending order of column1 values. Refer to the overview section for detailed filtering and sorting options.
Get rows from draft table
The ID or name of the table to query.
Optional sort: string[]Specifies the column names to sort the results by.
Optional after: stringThe cursor token value to get the next set of results. You can get this from the `paging.next.after` JSON property of a paged response containing more results.
Optional limit: numberThe maximum number of results to return. Default is `1000`.
Optional properties: string[]Specify the column names to get results containing only the required columns instead of all column details. If you want to include multiple columns in the result, use this query param as many times.
Optional _options: ConfigurationReplace a single row in the table's draft version. All the column values must be specified. If a column has a value in the target table and this request doesn't define that value, it will be deleted. See the Create a row endpoint for instructions on how to format the JSON row definitions.
Replaces an existing row
The ID or name of the table
The ID of the row
The JSON object of the row
Optional _options: ConfigurationSparse updates a single row in the table's draft version. All the column values need not be specified. Only the columns or fields that needs to be modified can be specified. See the Create a row endpoint for instructions on how to format the JSON row definitions.
Updates an existing row
The ID or name of the table
The ID of the row
The JSON object of the row with necessary fields that needs to be updated.
Optional _options: ConfigurationGenerated using TypeDoc
Clones a single row in the
draftversion of the table. Clone a row