Dynamed Decisions

 

Browse our guides and interact with our API reference for more information about MEDSAPI DynaMed Decisions. Try MEDSAPI DynaMed Decisions and learn about core concepts.

 

 

 

 

Get Tool by ID Code Samples

Use the code samples below as examples to create an application in your desired language.  The following code samples use the /v1/content/tool/{id} endpoint to get the tool that correlates to the given ID.  Get started and begin to understand the endpoint by following the examples below in the language of your choice. 

 

Code Samples

cURL

# get Tool by Id

curl -X GET "https://apis.ebsco.com/medsapi-dynamed-decisions/v1/content/tools/{id}"
    -H "Content-Type: application/json"
    -H "Accept: application/json"
    -H "Authorization: Bearer TOKEN"

Java

// get Tool by Id

// Construct the client
OkHttpClient client = new OkHttpClient();

// Create the URL
HttpUrl url = new HttpUrl.Builder()
    .scheme("https")
    .host("apis.ebsco.com")
    .addPathSegment("medsapi-dynamed-decisions")
    .addPathSegment("v1")
    .addPathSegment("content")
    .addPathSegment("tools")
    .addPathSegment("{id}")
    .build();


// Build the request
Request request = new Request.Builder()
    .url(url)
    .get()
    .addHeader("Content-Type, "application/json")
    .addHeader("Accept, "application/json")
    .addHeader("Authorization, "Bearer TOKEN")
    .build();

// Send the request
Response response = client.newCall(request).execute();

JavaScript

// get Tool by Id

const host = "https://apis.ebsco.com";
const path = "/medsapi-dynamed-decisions/v1/content/tools/{id}";

// Create the Request
const url = host + path;
const queryParams = {}

const settings = {
    "async": true,
    "crossDomain": true,
    "url": url,
    "method": "GET",
    "headers": {
        "Content-Type": "application/json",
        "Accept": "application/json",
        "Authorization": "Bearer TOKEN"
    },
    "data": queryParams
};

// Send the Request
$.ajax(settings).done(function (response) {
    console.log(response);
});

Ruby

# get Tool by Id

# Form the URL
urlstr = File.join("https://", "apis.ebsco.com", "/medsapi-dynamed-decisions/v1/content/tools/{id}")
url = URI.parse(urlstr)

# Create the HTTP object
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE

# Create the request
request = Net::HTTP::Get.new(url)
request["Content-Type"] = "application/json"
request["Accept"] = "application/json"
request["Authorization"] = "Bearer TOKEN"


# Send the request
response = http.request(request)

Python

# get Tool by Id

# Form the URL
url = "/medsapi-dynamed-decisions/v1/content/tools/{id}"

queryParams = {}

# Create Connection Instance
conn = http.client.HTTPSConnection("apis.ebsco.com")

# Create the Request Headers
headers = {
        "Content-Type": "application/json",
        "Accept": "application/json",
        "Authorization": "Bearer TOKEN"
}

# Send Request
conn.request("GET", url, queryParams, headers)