FastraxNetwork
Click here for a complete list of operations.
GetVendorRequests
This method returns an xml string of the open vendor requests assigned to the vendor login associated with the FastraxVendorLogin object passed to this method as a SOAP header. The results are passed back as a xml string formatted in accordance with the https://fastraxonline.com/SchemaDocs/GeneralSchemas/VendorSearches.xsd document.
Test
The test form is only available for requests from the local machine.SOAP 1.1
The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.
POST /FastraxNetwork.asmx HTTP/1.1
Host: dev.ws.fastraxonline.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.fastraxonline.com/webservices/request/GetVendorRequests"
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Header>
<FastraxVendorLogin xmlns="http://www.fastraxonline.com/webservices/request/">
<EXPIRE>double</EXPIRE>
<loginToken>guid</loginToken>
<vendorID>string</vendorID>
<ipAddr>string</ipAddr>
<pubKey>string</pubKey>
<sessionStart>dateTime</sessionStart>
</FastraxVendorLogin>
</soap:Header>
<soap:Body>
<GetVendorRequests xmlns="http://www.fastraxonline.com/webservices/request/" />
</soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<GetVendorRequestsResponse xmlns="http://www.fastraxonline.com/webservices/request/">
<GetVendorRequestsResult>string</GetVendorRequestsResult>
</GetVendorRequestsResponse>
</soap:Body>
</soap:Envelope>
SOAP 1.2
The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.
POST /FastraxNetwork.asmx HTTP/1.1
Host: dev.ws.fastraxonline.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Header>
<FastraxVendorLogin xmlns="http://www.fastraxonline.com/webservices/request/">
<EXPIRE>double</EXPIRE>
<loginToken>guid</loginToken>
<vendorID>string</vendorID>
<ipAddr>string</ipAddr>
<pubKey>string</pubKey>
<sessionStart>dateTime</sessionStart>
</FastraxVendorLogin>
</soap12:Header>
<soap12:Body>
<GetVendorRequests xmlns="http://www.fastraxonline.com/webservices/request/" />
</soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length
<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
<soap12:Body>
<GetVendorRequestsResponse xmlns="http://www.fastraxonline.com/webservices/request/">
<GetVendorRequestsResult>string</GetVendorRequestsResult>
</GetVendorRequestsResponse>
</soap12:Body>
</soap12:Envelope>