Table collection services

Use the table collection services URI to access any table in the ObjectServer data store, such as system or user tables. The table collection services URI is the top-level URI.

The format of this URI is as follows.

	http://host:port/objectserver/restapi/database/table

Where database is the name of the ObjectServer database, and table is the name of the table in that database.

The table collection services URI supports the following HTTP methods: GET, POST, PATCH, and DELETE.

Rows in the referenced table can be fetched, updated, or deleted by a single request. A row can also be inserted into the table by a POST request. Only a single row can be inserted. Bulk insertion is not possible.

Example table collection URIs are as follows:
  • http://localhost/objectserver/restapi/alerts/status
  • http://localhost/objectserver/restapi/catalog/tables
  • http://localhost/objectserver/restapi/alerts/conversions