Option 1:
The Following is the standard web service URL use to post order by using SOAP 1.1 or by SOAP 1.2
https://secure.quickflora.com/Admin/scripts/WS/QfOrderWebService.asmx
We can get wsdl details of this Web service by following URL
https://secure.quickflora.com/Admin/scripts/WS/QfOrderWebService.asmx?WSDL
A sample SOAP request and response for this web service can get from following URL
https://secure.quickflora.com/Admin/scripts/WS/QfOrderWebService.asmx?op=PostOrder
Option 2:
Posting XML data on URL
On the following URL XML order data should post as ORDER
https://secure.quickflora.com/Admin/scripts/QFXMLOrder.aspx
A sample HTML form and XML of a order can be found at the following URL
https://secure.quickflora.com/Admin/scripts/TestQFXMLOrder.htm
A sample XML is below:
The token for this field value will be provided by Quickflora for live production order submitted for each florist. The below test token is used which can be used to submit a test order.
<?xml version=”1.0″ encoding=”utf-8″ ?>
<PostOrder xmlns=”https://secure.quickflora.com/“>
<Token>aXcoF5t8HkEDceCR4NmQKDi5QSOlF1GreeneandGreene</Token>
<OrderErrorEmail>imtiyazsir@gmail.com</OrderErrorEmail>
<_Billing>
<CustomerID></CustomerID>
<FullName>Imtiyaz AHmad</FullName>
<FirstName>Imtiyaz</FirstName>
<LastName>Ahmad</LastName>
<Address1>P- 66 Sawaraj Nagar</Address1>
<Address2>Colony</Address2>
<Address3>Pin-29001</Address3>
<City>Raebareli</City>
<State>CA</State>
<Zip>90004</Zip>
<Phone>123-456-7890</Phone>
<PhoneExt>011</PhoneExt>
<Fax>111-222-3333</Fax>
<Email>sir_imtiyaz@hotmail.com</Email>
<Cell>002-563-7890</Cell>
</_Billing>
<_Shipping>
<Method>Local Truck</Method>
<Attention>Mr</Attention>
<Salutation>IBM</Salutation>
<FirstName>Kamal</FirstName>
<LastName>Kumar</LastName>
<Address1>P-70 Sawaraj Nagar</Address1>
<Address2>Colony</Address2>
<Address3>Pin-229001</Address3>
<City>RaeBareli</City>
<State>CA</State>
<Zip>90004</Zip>
<Country>US</Country>
<Phone>456-789-1230</Phone>
<PhoneExt>022</PhoneExt>
<Fax>369-741-8520</Fax>
<Email>kamal@hotmail.com</Email>
<Cell>357-159-2468</Cell>
<CardMessage>
<![CDATA[Happy Anniversary and
Happy Valentine’s Day!
Love,
Rhonda]]>
</CardMessage>
<DestinationType>Home</DestinationType>
<DriverRouteInfo>Deliver on Door</DriverRouteInfo>
<Priority>Normal</Priority>
<OrderShipDate>12/30/2010</OrderShipDate>
</_Shipping>
<_Payment>
<MethodID>Credit Card</MethodID>
<_Check>
<Number></Number>
<CheckID></CheckID>
<ChkDate></ChkDate>
</_Check>
<_CreditCard>
<TypeID>Visa</TypeID>
<Name>Imtiyaz AHmad</Name>
<AccountNumber>5555555555554444</AccountNumber>
<ExpirationDate>12/2010</ExpirationDate>
<SecurityCode>571</SecurityCode>
<ApprovalCode>3459785213</ApprovalCode>
</_CreditCard>
</_Payment>
<_Orderdetails>
<OccasionCodeID>Anniversary</OccasionCodeID>
<SourceCodeID>Paper</SourceCodeID>
<Comments>Hi this is comment</Comments>
<TaxGroupID>DEFAULT</TaxGroupID>
<_Currency>
<ID>USD</ID>
<ExchangeRate>1</ExchangeRate>
</_Currency>
<DeliveryCharge>10</DeliveryCharge>
<ServiceCharge>0</ServiceCharge>
<_Discounts>
<Percentage>0</Percentage>
<Amount>0</Amount>
</_Discounts>
<_Tax>
<Percentage>10</Percentage>
<Amount>9</Amount>
</_Tax>
<Total>89</Total>
</_Orderdetails>
<_OrderItemsdetails>
<Item>
<Itemno>1</Itemno>
<Itemid>04-C3</Itemid>
<UpcCode></UpcCode>
<Description><![CDATA[This Is Item 04-C3]]></Description>
<Quantity>1</Quantity>
<UnitOfMeasurement></UnitOfMeasurement>
<DiscountPercentage>0</DiscountPercentage>
<UnitPrice>40</UnitPrice>
</Item>
<Item>
<Itemno>2</Itemno>
<Itemid>04-C4654</Itemid>
<UpcCode></UpcCode>
<Description><![CDATA[This Is Item 04-C4]]></Description>
<Quantity>1</Quantity>
<UnitOfMeasurement></UnitOfMeasurement>
<DiscountPercentage>0</DiscountPercentage>
<UnitPrice>40</UnitPrice>
</Item>
</_OrderItemsdetails>
</PostOrder>