How to Set URL and Authorization Token in BizTalk Dynamic REST Post

Here are some samples that might be useful if you need to dynamically send a REST “POST” message. Of course, in the real world, the token and the URL would probably be some type of configuration variable. YourMsgRequestName(WCF.HttpHeaders) =         "Accept: application/json" +         "\r\n" +         "Content-Type: application/json " +         "\r\n" +         "X-AUTH-TOKEN: yourSecretAuthTokenHere" ; // Add […]