Globeflow API

Last updated: 15/07/2018
Endpoint
URLhttps://api.globeflow.net/1.0/
Version1.0
HTTPSRequired
Authentication
Headers
Ocp-Apim-Subscription-KeyRequired
Example:

// 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))
		});