FFDX_Webservice_Customer
Click here for a complete list of operations.
FinaliseShipment
Finalise Customer Shipment
Test
To test the operation using the HTTP POST protocol, click the 'Invoke' button.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 /ffdx_ws/v11/service_customer.asmx HTTP/1.1 Host: ws05.ffdx.net Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: "http://www.ffdx.net/FinaliseShipment" <?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> <FinaliseShipment xmlns="http://www.ffdx.net/"> <Username>string</Username> <Password>string</Password> <xmlStream>string</xmlStream> <LevelConfirm>string</LevelConfirm> </FinaliseShipment> </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> <FinaliseShipmentResponse xmlns="http://www.ffdx.net/"> <FinaliseShipmentResult>string</FinaliseShipmentResult> </FinaliseShipmentResponse> </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 /ffdx_ws/v11/service_customer.asmx HTTP/1.1 Host: ws05.ffdx.net 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> <FinaliseShipment xmlns="http://www.ffdx.net/"> <Username>string</Username> <Password>string</Password> <xmlStream>string</xmlStream> <LevelConfirm>string</LevelConfirm> </FinaliseShipment> </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> <FinaliseShipmentResponse xmlns="http://www.ffdx.net/"> <FinaliseShipmentResult>string</FinaliseShipmentResult> </FinaliseShipmentResponse> </soap12:Body> </soap12:Envelope>
HTTP GET
The following is a sample HTTP GET request and response. The placeholders shown need to be replaced with actual values.
GET /ffdx_ws/v11/service_customer.asmx/FinaliseShipment?Username=string&Password=string&xmlStream=string&LevelConfirm=string HTTP/1.1 Host: ws05.ffdx.net
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://www.ffdx.net/">string</string>
HTTP POST
The following is a sample HTTP POST request and response. The placeholders shown need to be replaced with actual values.
POST /ffdx_ws/v11/service_customer.asmx/FinaliseShipment HTTP/1.1 Host: ws05.ffdx.net Content-Type: application/x-www-form-urlencoded Content-Length: length Username=string&Password=string&xmlStream=string&LevelConfirm=string
HTTP/1.1 200 OK Content-Type: text/xml; charset=utf-8 Content-Length: length <?xml version="1.0" encoding="utf-8"?> <string xmlns="http://www.ffdx.net/">string</string>