Skip to content

Latest commit

 

History

History
 
 

examples

Introduction

This directory contains example API calls for the management API.

A convenient way to execute these is using Visual Code's REST Client. This will allow you to edit and execute API calls directly from within Visual Code.

You might want to put the hostname and port of dbadmin in Visual Code's settings settings.json:

"rest-client.environmentVariables": {

        "localhost": {
            "hostname": "localhost:7777",
        },
        "production": {
            "hostname": "dbadmin.example.com:7777",
        }
    }
}