Action - Post URL
This action allows you to post data to a URL.
Note Since the Post URL action sends data outside of Microsoft CRM, please ensure that the posted information abides by your businesses privacy standards and the site you are posting to is a known or trusted site.
The required action parameters are as follows:
Required parameters | Description |
Url | The URL to post data to. This URL must specify a dynamic page that can accept data such as an ASP or ASPX. |
Parameter 1..Parameter N | The parameters appending to the URL. Each must have a tagname. |
The following diagram shows the schema for this action.
Usage Example:
The following is an example asp page to receive the posted URL.
<%
Set FSO = CreateObject(“Scripting.FileSystemObject”)
Set LogFile = FSO.OpenTextFile(“c:\posturl.txt”, 2, True)
LogFile.WriteLine Request.Form(“accountid”)
%>
See Also