Database Management REST Endpoints
Database Management
Use the Database Management API to manage your database tables.
- Create a Table
- Method: postPath:
/mobile/system/databaseManagement/tables - Create an Index
- Method: postPath:
/mobile/system/databaseManagement/tables/{table}/indexes - Remove a Table
- Method: deletePath:
/mobile/system/databaseManagement/tables/{table} - Remove an Index
- Method: deletePath:
/mobile/system/databaseManagement/tables/{table}/indexes/{index} - Remove and Re-Create a Table
- Method: putPath:
/mobile/system/databaseManagement/tables/{table} - Return Metadata About All Tables
- Method: getPath:
/mobile/system/databaseManagement/tables - Return Metadata for a Table
- Method: getPath:
/mobile/system/databaseManagement/tables/{table}