<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAS Access to REDCap using PROC HTTP. in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/469807#M70823</link>
    <description>Thank you for the solution. I ran into the same problem for a few days and no clue how to fix it.&lt;BR /&gt;I appreciate the sharing of knowledge.&lt;BR /&gt;Yet it is for getting data from REDCap.&lt;BR /&gt;Any script for loading data to REDCap via API?</description>
    <pubDate>Wed, 13 Jun 2018 00:46:29 GMT</pubDate>
    <dc:creator>Christine_Lai</dc:creator>
    <dc:date>2018-06-13T00:46:29Z</dc:date>
    <item>
      <title>SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291293#M59875</link>
      <description>&lt;P&gt;I am running into trouble accessing REDCap data using SAS PROC HTTP.&amp;nbsp; I have followed the instructions presented in the paper found here (&lt;A href="http://www.mwsug.org/proceedings/2013/RX/MWSUG-2013-RX02.pdf" target="_blank"&gt;http://www.mwsug.org/proceedings/2013/RX/MWSUG-2013-RX02.pdf&lt;/A&gt;), changing the directory listed and providing the correct URL and Token.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We get the following error in the redcap_status.txt document:&lt;/P&gt;&lt;P&gt;HTTP/1.1 403 Forbidden&lt;BR /&gt;Date: Thu, 11 Aug 2016 19:38:05 GMT&lt;BR /&gt;Server: Apache/2.2.22 (Debian)&lt;BR /&gt;X-Powered-By: PHP/5.4.45-0+deb7u4&lt;BR /&gt;Expires: 0&lt;BR /&gt;cache-control: no-store, no-cache, must-revalidate&lt;BR /&gt;Pragma: no-cache&lt;BR /&gt;Access-Control-Allow-Origin: *&lt;BR /&gt;Vary: Accept-Encoding&lt;BR /&gt;Content-Length: 49&lt;BR /&gt;Content-Type: text/html; charset=utf-8&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And the error we get in the redcap_data.csv file is:&lt;/P&gt;&lt;P&gt;ERROR: You do not have permissions to use the API&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FYI: A colleague of mine has been able to successfully use Alteryx to access these REDCap data, but also cannot do so by submitting his token with the PROC HTTP statement in SAS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a setting that may need to be turned on either in REDCap or in SAS to allow us to access these data?&amp;nbsp; What else are we missing?&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 15:17:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291293#M59875</guid>
      <dc:creator>jbuab</dc:creator>
      <dc:date>2016-08-12T15:17:08Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291311#M59879</link>
      <description>&lt;P&gt;Looks like HTTPS is required. &amp;nbsp;If running this from SAS on Windows, it should just work. &amp;nbsp;On a Unix system, you might need to set the&amp;nbsp;&lt;SPAN&gt;SSLCALISTLOC option for your local certificates. &amp;nbsp;If using SAS University Edition, the SSL libraries aren't provided so this part can't work. &amp;nbsp;You didn't receive an SSL error, so this might not be the problem at all.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The process for using the REDCap API looks similar to the one for Slack (the messaging app) and &lt;A href="http://blogs.sas.com/content/sasdummy/2016/07/22/slack-channel-with-sas/" target="_self"&gt;I've recently published a blog post about that&lt;/A&gt;. &amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If you want to check your inputs and outputs in the HTTP/S realm, you might try using &lt;A href="https://httpbin.org" target="_self"&gt;https://httpbin.org &lt;/A&gt;as an endpoint and see what you get. &amp;nbsp;That free site is really nice for debugging HTTP interactions. &amp;nbsp;Obviously the API methods won't work, but it's an effective way to check the mechanisms in your code. &amp;nbsp;I've also included a little macro to help you debug the responses that you recieve.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;filename status temp;
filename my_out temp;
filename my_in temp;

%macro echoResp(fn=);
data _null_;
 infile &amp;amp;fn;
 input;
 put _infile_;
run;
%mend;

*** Project- and user-specific token obtained from REDCap ***;
%let mytoken = XXXXXXXXXXXXX;
 /**********************************************************
Step 2. Request all observations (CONTENT=RECORDS) with one
row per record (TYPE=FLAT). Note: Obtain your site-specific
 url from your local REDCap support team.
******************************************************/
*** Create the text file to hold the API parameters. ***;
data _null_ ;
file my_in ;
put "%NRStr(content=record&amp;amp;type=flat&amp;amp;format=csv&amp;amp;token=)&amp;amp;mytoken";
run;
*** PROC HTTP call. Everything except HEADEROUT= is required. ***;
proc http
 in= my_in
 out= my_out
 headerout = status
 url ="https://httpbin.org"
 method="POST";
run; 

%echoResp(fn=status);
%echoResp(fn=my_out);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 12 Aug 2016 16:14:50 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291311#M59879</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2016-08-12T16:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291322#M59882</link>
      <description>&lt;P&gt;The macro you gave me works perfectly, but I'm still getting exactly the same errors I shared in the original post.&amp;nbsp;PROC HTTP is new to me, but I will read the blog entry you posted, as well as work to find out more about using &lt;A href="https://httpbin.org/" target="_self" rel="nofollow noopener noreferrer"&gt;https://httpbin.org &lt;/A&gt;as an endpoint, because I'm not sure I quite understand.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 16:40:16 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291322#M59882</guid>
      <dc:creator>jbuab</dc:creator>
      <dc:date>2016-08-12T16:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291328#M59884</link>
      <description>&lt;P&gt;The test program I shared is more of an "r u there" test for PROC HTTP. &amp;nbsp;I think the problem that you are having is most likely due to the way you're providing your credential token.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you're running SAS 9.4 Maint 3, you can simplify a little bit by placing text directly on the&amp;nbsp;&lt;STRONG&gt;IN&lt;/STRONG&gt; option:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc http
 in="content=record%str(&amp;amp;)type=flat%str(&amp;amp;)format=csv%str(&amp;amp;)token=&amp;amp;mytoken"
...&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The %NRStr() call was probably provided to prevent warnings about unresolved macro symbols triggered by the ampersands in the IN field. I've adjusted my version to wrap just the ampersands.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Usually this style of parameter setting is provided on the URL itself, not on a POST payload. &amp;nbsp;If that's the case, then you would really want:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc http
 out= my_out
 headerout = status
 url ="https://redcap.yoursite.org/api?content=record%str(&amp;amp;)type=flat%str(&amp;amp;)format=csv%str(&amp;amp;)token=&amp;amp;mytoken"
 method="POST";
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also make sure that &amp;amp;mytoken contains no extra spaces, and does in fact match the key you were given.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 16:54:09 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291328#M59884</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2016-08-12T16:54:09Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291352#M59886</link>
      <description>&lt;P&gt;Ok.&amp;nbsp; I eliminated the&amp;nbsp;lines including the infile and added the information you included in the URL.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, I'm getting different error messages, so I at least feel like I might&amp;nbsp;be getting somewhere.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The status error message is:&lt;/P&gt;&lt;P&gt;HTTP/1.1 405 METHOD NOT ALLOWED&lt;/P&gt;&lt;P&gt;Server: nginx&lt;/P&gt;&lt;P&gt;Date: Fri, 12 Aug 2016 16:37:07 GMT&lt;/P&gt;&lt;P&gt;Content-Type: text/html&lt;/P&gt;&lt;P&gt;Content-Length: 178&lt;/P&gt;&lt;P&gt;Connection: keep-alive&lt;/P&gt;&lt;P&gt;Allow: HEAD, OPTIONS, GET&lt;/P&gt;&lt;P&gt;Access-Control-Allow-Origin: *&lt;/P&gt;&lt;P&gt;Access-Control-Allow-Credentials: true&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The output file error message is:&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;title&amp;gt;405 Method Not Allowed&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;h1&amp;gt;Method Not Allowed&amp;lt;/h1&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;The method is not allowed for the requested URL.&amp;lt;/p&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And just in case I might have had the token wrong, I tried the program the old way (with an infile), and the error messages I'm now getting are:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;status&lt;/P&gt;&lt;P&gt;HTTP/1.1 301 Moved Permanently&lt;/P&gt;&lt;P&gt;Date: Fri, 12 Aug 2016 17:07:31 GMT&lt;/P&gt;&lt;P&gt;Server: Apache/2.2.22 (Debian)&lt;/P&gt;&lt;P&gt;Location: &lt;A href="https://testcap.eyes.uab.edu/api/" target="_blank"&gt;https://testcap.eyes.uab.edu/api/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Vary: Accept-Encoding&lt;/P&gt;&lt;P&gt;Content-Length: 328&lt;/P&gt;&lt;P&gt;Content-Type: text/html; charset=iso-8859-1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;outfile&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;html&amp;gt;&amp;lt;head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;title&amp;gt;301 Moved Permanently&amp;lt;/title&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/head&amp;gt;&amp;lt;body&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;h1&amp;gt;Moved Permanently&amp;lt;/h1&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;p&amp;gt;The document has moved &amp;lt;a href="&lt;A href="https://communities.sas.com/" target="_blank"&gt;https://testcap.eyes.uab.edu/api/"&amp;gt;here&amp;lt;/a&amp;gt;.&amp;lt;/p&lt;/A&gt;&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;hr&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;address&amp;gt;Apache/2.2.22 (Debian) Server at testcap.eyes.uab.edu Port 443&amp;lt;/address&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suggestions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 17:07:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291352#M59886</guid>
      <dc:creator>jbuab</dc:creator>
      <dc:date>2016-08-12T17:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291355#M59887</link>
      <description>&lt;P&gt;For the first set of output, you're not still pointing at httpbin.org, right? "POST" isn't supported there, and that's the message I'd expect from it.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;For the second set ... well, I don't know. &amp;nbsp;If you have a colleague who is successfully using this endpoint from another tool, we might need to see how that's configured. &amp;nbsp;Is there code (even if it's not SAS code) that you can share? &amp;nbsp;Then we can translate to PROC HTTP.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PROC HTTP is essentially the SAS equivalent of&amp;nbsp;&lt;STRONG&gt;cURL&lt;/STRONG&gt;, a programmatic method to access HTTP services. &amp;nbsp;Anything that you can do in another tool can probably also be done with PROC HTTP, as long as you transcribe the methods and parameters properly.&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 17:15:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291355#M59887</guid>
      <dc:creator>ChrisHemedinger</dc:creator>
      <dc:date>2016-08-12T17:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291356#M59888</link>
      <description>&lt;P&gt;No, in both cases I was pointing to our test REDCap URL.&amp;nbsp; And my coworker has tried to access the test site using Alteryx, and he's having no difficulty.&amp;nbsp; So, I'm completely confused.&amp;nbsp; All I can wonder is if I've been kicked out of the sandbox...&lt;/P&gt;</description>
      <pubDate>Fri, 12 Aug 2016 17:25:05 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/291356#M59888</guid>
      <dc:creator>jbuab</dc:creator>
      <dc:date>2016-08-12T17:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/292244#M59929</link>
      <description>&lt;P&gt;First: I can't figure out the reason behind the new error, but it resolved itself when I repasted the URL and my token in my program (and I'd made no substantial changes to either of these elements between the first error and the new error.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Second: It seems that I had most of the important elements for the PROC HTTP command, but the ordering of my command wouldn't work. I don't know why that should matter, especially because the paper I referenced presented the code in the order I used.&amp;nbsp; But here's the code that eventually was successful:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;filename&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; my_in &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"C:\...\api_parameter.txt"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;filename&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; my_out &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"C:\...\redcap_data.csv"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;filename&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; status &lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"C:\...\redcap_status.txt"&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;%let&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; mytoken = XXXXXXX;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;data&lt;/STRONG&gt;&lt;/FONT&gt; &lt;FONT color="#0000ff" face="Courier New" size="2"&gt;_null_&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt; ;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;file&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt; my_in ;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;&lt;FONT color="#0000ff" face="Courier New" size="2"&gt;put&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt; &lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"%NRStr(token=)&amp;amp;mytoken%NRStr(&amp;amp;content=record&amp;amp;type=flat&amp;amp;format=csv)&amp;amp;"&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;proc&lt;/STRONG&gt;&lt;/FONT&gt; &lt;STRONG&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;http&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;in= my_in&lt;/P&gt;&lt;P&gt;out= my_out&lt;/P&gt;&lt;P&gt;headerout = status&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;url =&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"https://.../api/"&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;method=&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;&lt;FONT color="#800080" face="Courier New" size="2"&gt;"post"&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;FONT color="#000080" face="Courier New" size="2"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;FONT face="Courier New" size="2"&gt;&lt;FONT face="Courier New" size="2"&gt;;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 17:55:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/292244#M59929</guid>
      <dc:creator>jbuab</dc:creator>
      <dc:date>2016-08-17T17:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: SAS Access to REDCap using PROC HTTP.</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/469807#M70823</link>
      <description>Thank you for the solution. I ran into the same problem for a few days and no clue how to fix it.&lt;BR /&gt;I appreciate the sharing of knowledge.&lt;BR /&gt;Yet it is for getting data from REDCap.&lt;BR /&gt;Any script for loading data to REDCap via API?</description>
      <pubDate>Wed, 13 Jun 2018 00:46:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/SAS-Access-to-REDCap-using-PROC-HTTP/m-p/469807#M70823</guid>
      <dc:creator>Christine_Lai</dc:creator>
      <dc:date>2018-06-13T00:46:29Z</dc:date>
    </item>
  </channel>
</rss>

