Hi,
Custom post in web store - I need to open a new shipment
with a different account ("From" Field) diffrenet than the default, but I can't find the correct element name in the XSD.
Thanks
Gilad
You're looking to control the From information on the order? Or, use a different shipping account that you have setup already in ShipRush? Could you provide a bit more detail?
Thank you,
SYSOPS
Have Questions? Ask the ShipRush Knowledge Base: https://shiprush.com/kbase
I create a new order with the custom post in method. currently the post request fills out all the fields (address, package, carrier service),
but the "From" field is filled automatically because there is only one account in the store.
Now we want to add another account, so i must fill this field with the post request, but i couldnt find the correct xml element to use for this.
Thanks
Once you have a second account set up in ShipRush, you would control with this element (this is from the Example Post In Payload):
HTH,Code:<ShipperAddress> <!-- OPTIONAL, if not set, the SR defaults will kick in --> <UPSAccountNumber>123555</UPSAccountNumber> <Address> <FirstName>Alex</FirstName> <LastName>Test</LastName> <Company>ACME</Company> <Address1>120 Lakeside ave</Address1> <Address2>suite 101</Address2> <City>SEATTLE</City> <State>WA</State> <Country>US</Country> <StateAsString>WA</StateAsString> <CountryAsString>US</CountryAsString> <PostalCode>98122</PostalCode> <Phone>2063280000</Phone> <EMail>asdf@asdf.com</EMail> </Address> </ShipperAddress> </Shipment>
SYSOPS
Have Questions? Ask the ShipRush Knowledge Base: https://shiprush.com/kbase
Bookmarks