get
Definition
Calls the specified URL. The tag works with CallFire XML variables and the PHP script to obtain data from a specified source. The resulting data string can be stored under a varname and referenced later in the script.
Value
The value for the "get" tag is the URL referencing the desired data string.
Attributes
Attribute | Required | Values | Description |
---|---|---|---|
name | N | any text | A unique name for the tag |
varname | Y | any text | Stores the response from the get request to this variable |
Examples
Call a URL.
http://destination.com/test.php?name=${call.path}
Call a URL with an ID and play back the response in a play tag
${call.lastinput}
http://destination.com/test.php?type=MyText&ID=${MyID}
${myresult}