Skip to main content

Database API

All URIs are relative to http://localhost:1000

MethodHTTP requestDescription
database_exportGET /database/exportYour GET endpoint
database_importPOST /database/import/database/import [POST]

database_export​

ExportedDatabase database_export()

Your GET endpoint

This is going to export your current database.

Example​

import pieces_os_client
from pieces_os_client.models.exported_database import ExportedDatabase
from pieces_os_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:1000
# See configuration.py for a list of all supported configuration parameters.
configuration = pieces_os_client.Configuration(
host="http://localhost:1000"
)


# Enter a context with an instance of the API client
with pieces_os_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pieces_os_client.DatabaseApi(api_client)

try:
# Your GET endpoint
api_response = api_instance.database_export()
print("The response of DatabaseApi->database_export:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling DatabaseApi->database_export: %s\n" % e)

Parameters​

This endpoint does not need any parameters.

Return type​

ExportedDatabase

Authorization​

No authorization required

HTTP request headers​

  • Content-Type: Not defined
  • Accept: application/json, text/plain

HTTP response details​

Status codeDescriptionResponse headers
200OK-
500Internal Server Error-

database_import​

database_import(exported_database=exported_database)

/database/import [POST]

This is going to take in a database, and merge it with the current database. This will revert your database back to it original form if this request fails.

Example​

import pieces_os_client
from pieces_os_client.models.exported_database import ExportedDatabase
from pieces_os_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:1000
# See configuration.py for a list of all supported configuration parameters.
configuration = pieces_os_client.Configuration(
host="http://localhost:1000"
)


# Enter a context with an instance of the API client
with pieces_os_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pieces_os_client.DatabaseApi(api_client)
exported_database = pieces_os_client.ExportedDatabase() # ExportedDatabase | (optional)

try:
# /database/import [POST]
api_instance.database_import(exported_database=exported_database)
except Exception as e:
print("Exception when calling DatabaseApi->database_import: %s\n" % e)

Parameters​

NameTypeDescriptionNotes
exported_databaseExportedDatabase[optional]

Return type​

void (empty response body)

Authorization​

No authorization required

HTTP request headers​

  • Content-Type: application/json
  • Accept: text/plain

HTTP response details​

Status codeDescriptionResponse headers
204No Content-
500Internal Server Error-
505HTTP Version Not Supported, This means that your user need to update their local os, and they cannot create a shareable link.-