Find the original dataset here: http://data.maryland.gov/d/mnf2-8u9m
DHMH's primary goals for access to care are: improve access to care; reduce preventable hospital admissions; promote community based alternative settings; increase use of DHMH resources for those in need; and reduce disparities in access to care. The metrics of key outcomes shown in this dataset directly support these primary goals. These data are provided each month by DHMH to StateStat and DoIT.
Finish the setup steps to use DHMH Report 1 (Access to Care): Strategy C (Project on Participating Providers) in Slack.
Run this function with a POST request to Blockspring.
Visit the node.js quickstart to get started fast.
Visit the php quickstart to get started fast.
Visit the python quickstart to get started fast.
Visit the ruby quickstart to get started fast.
Visit the r quickstart to get started fast.
Visit the javascript quickstart to get started fast.
Use this URL for webhooks. You'll want to make a POST request.
curl -H "Content-Type: application/json" -d "{ \"date_of_completion\": , \"milestone\": }" "https://run.blockspring.com/api_v2/blocks/bd7b4c8e3eaadcfe062bbf342a589bdb?"
var blockspring = require("blockspring");
blockspring.runParsed("bd7b4c8e3eaadcfe062bbf342a589bdb", { "date_of_completion": , "milestone": }, function(res) {
console.log(res.params);
});
var request = require("request");
request.post({
url: "https://run.blockspring.com/api_v2/blocks/bd7b4c8e3eaadcfe062bbf342a589bdb?",
form: { "date_of_completion": , "milestone": }
},
function(err, response, body) {
console.log(JSON.parse(body));
});
<?php
$url = 'https://run.blockspring.com/api_v2/blocks/bd7b4c8e3eaadcfe062bbf342a589bdb?';
$data = json_encode(array("date_of_completion" => , "milestone" => ));
// use key 'http' even if you send the request to https://...
$options = array(
'http' => array(
'header' => array("Accept: application/json", "Content-Type: application/json"),
'method' => 'POST',
'content' => $data,
),
);
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
var_dump(json_decode($result));
?>
<?php
require('blockspring.php');
var_dump(Blockspring::runParsed("bd7b4c8e3eaadcfe062bbf342a589bdb", array("date_of_completion" => , "milestone" => ))->params);
import json
import urllib2
req = urllib2.Request("https://run.blockspring.com/api_v2/blocks/bd7b4c8e3eaadcfe062bbf342a589bdb?")
req.add_header('Content-Type', 'application/json')
data = { "date_of_completion": , "milestone": }
results = urllib2.urlopen(req, json.dumps(data)).read()
print json.loads(results)
import blockspring
import json
print blockspring.runParsed("bd7b4c8e3eaadcfe062bbf342a589bdb", { "date_of_completion": , "milestone": }).params
require 'rest_client'
response = RestClient.post 'https://run.blockspring.com/api_v2/blocks/bd7b4c8e3eaadcfe062bbf342a589bdb?', JSON.dump({ "date_of_completion" => , "milestone" => }), :content_type => :json
puts JSON.load(response)
require 'blockspring'
puts Blockspring.runParsed("bd7b4c8e3eaadcfe062bbf342a589bdb", { "date_of_completion" => , "milestone" => } ).params
require 'rest_client'
response = RestClient.post 'https://run.blockspring.com/api_v2/blocks/bd7b4c8e3eaadcfe062bbf342a589bdb?', JSON.dump({ "date_of_completion" = , "milestone" = }), :content_type => :json
puts JSON.load(response)
library('blockspring')
library('rjson')
print(blockspringRunParsed("bd7b4c8e3eaadcfe062bbf342a589bdb", list( "date_of_completion" = , "milestone" = ))$params)
<script src="https://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="https://cdn.blockspring.com/blockspring.js"></script>
<script>
blockspring.runParsed("bd7b4c8e3eaadcfe062bbf342a589bdb", { "date_of_completion": , "milestone": }, { "api_key": "" }, function(res){
console.log(res.params);
})
</script>
https://run.blockspring.com/api_v2/blocks/bd7b4c8e3eaadcfe062bbf342a589bdb?
Finish the setup steps to use DHMH Report 1 (Access to Care): Strategy C (Project on Participating Providers) in Code.