Database Management REST Endpoints

Database Management
Use the Database Management API to manage your database tables.
Create a Table
Method: post
Path: /mobile/system/databaseManagement/tables
Create an Index
Method: post
Path: /mobile/system/databaseManagement/tables/{table}/indexes
Remove a Table
Method: delete
Path: /mobile/system/databaseManagement/tables/{table}
Remove an Index
Method: delete
Path: /mobile/system/databaseManagement/tables/{table}/indexes/{index}
Remove and Re-Create a Table
Method: put
Path: /mobile/system/databaseManagement/tables/{table}
Return Metadata About All Tables
Method: get
Path: /mobile/system/databaseManagement/tables
Return Metadata for a Table
Method: get
Path: /mobile/system/databaseManagement/tables/{table}