JSON DB API
Master list of JSON DB API actions for managing FairCom databases, tables, indexes, records, cursors, SQL, and transactions
The JSON DB API manages a FairCom database. It provides actions to manage databases, tables, indexes, records, cursors, SQL, and transactions.
The JSON DB API manages a FairCom database. It provides actions to manage databases, tables, indexes, records, cursors, SQL, and transactions.
This API is based on the jsonAction protocol, which POSTs the JSON request to one endpoint on a server and returns the JSON response. This section defines the JSON payloads that can be POSTed to the FairCom server over HTTP, HTTPS, WS, and WSS using the endpoint /api
, such as https://localhost:8443/api
.
Sessions
Services
Databases
Action | Description |
---|---|
| |
| |
|
Tables
Action | Description |
---|---|
| |
| |
| |
| |
| |
|
Indexes
Action | Description |
---|---|
| |
| |
| |
|
Modify data
Action | Description |
---|---|
| |
| |
| |
|
Get data
Action | Description |
---|---|
| |
| |
| |
| |
| |
| |
| |
| |
|
SQL
Action | Description |
---|---|
| |
|
Transactions
Action | Description |
---|---|
closes a transaction and makes its changes durable and visible to other transactions. You can include the | |
returns a | |
bookmarks the current point in the transaction process. You can create multiple savepoints and use | |
returns a list of all active transactions that the logged-in account is authorized to see. | |
closes a transaction and discards all changes made under the control of the transaction. Once a transaction is closed, you can no longer use its | |
reverts a transaction back to a savepoint previously created by |