Internal database management
Display a list of databases
curl --location --request GET 'https://demo.scoring.one/api/internaldata/collections' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'Get data
curl --location --request GET 'https://demo.scoring.one/api/internaldata/collections/<collection_name>' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' Get a list of columns
curl --location --request GET 'https://demo.scoring.one/api/internaldata/columns/<collection_name>' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'Get a list of indexes
curl --location --request GET 'https://demo.scoring.one/api/internaldata/indexes/<collection_name>' \
--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx' Delete a table
curl -X DELETE 'https://demo.scoring.one/api/internaldata/collections/delete/<collection_name>' \--header 'Authorization: Bearer xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'Load data to Scoring.One engine
Last updated