| URL | https://api.globeflow.net/1.0/ |
| Version | 1.0 |
| HTTPS | Required |
| Headers | |
|---|---|
| Ocp-Apim-Subscription-Key | Required |
// 1) Set the authentication
$.ajaxSetup({headers: {"Ocp-Apim-Subscription-Key": [your_subscription_key]}});
// 2) Make API call
$.post("https://api.globeflow.net/1.0/get-user", {})
.done(function(response) {
alert("Response: " + JSON.stringify(response))
});