export function zoneScanPut(zoneId, showInterstitial, onSuccess, onError) {
    let opts = {
        body: {
            'show_interstitial': showInterstitial
        }
    };
    return http.put(ENDPOINT + "/zones/" + zoneId + "/scan", opts, onSuccess, onError);
}
export function zoneActivationCheckPutNew(zoneId, onSuccess, onError) {
    return http.put(ENDPOINT + "/zones/" + zoneId + "/activation_check", {}, onSuccess, onError);
}