Skip to main content

Update Seller Address Point - updateSellerAddressPoint()

Update Seller Address Point

The updateSellerAddressPoint() method, available in the Horoz Logistics E-Export Integration, is used to update the departure point information defined in the Horoz Logistics system. This method specifies the departure point of the seller for orders where the products will be picked up from the address. Below is a list of important information and considerations for updating the seller's departure point address in the Horoz system using the updateSellerAddressPoint() method.

  • The updateSellerAddressPoint() method is a RESTful web service method that accepts data in JSON format via the POST method.

  • While updating the departure point information of the seller in the Horoz system, the related information should be included in the body section in JSON format, and the processKey information should be sent as a parameter in the header. Requests should be encoded as UTF-8 and submitted to the Horoz Logistics E-Export Integration Web Service.

  • The sellerAddressPoint information is unique among the departure points owned by the seller within this method.

  • It is not possible to create multiple records with the same sellerAddressPoint. Updates can only be performed using the sellerAddressPointId information.

  • The city and district information of the seller's address used in this method should be created using the records from the listCounties() method. Requests containing information outside of these records will result in errors and will not be recorded in the system.

  • The updateSellerAddressPoint() method is an E-Export web service method that enables updating the seller's departure points, which were previously created using the createSellerAddressPoint method.

  • The updateSellerAddressPoint() method accepts the following parameters in JSON format via the POST method: sellerAddressPointId, sellerAddressPoint, sellerAddressCity, sellerAddressCounty, sellerAddress, sellerAddressPostCode, sellerAddressPhone1, sellerAddressPhone2, sellerAddressEmailAddress, and sellerAddressOfficialPerson.

  • In response, the method returns sellerAddressPointId, responseCode, and responseMessage to inform the client about the success or failure of the operation. If the sellerAddressPoint is updated, the updated departure point information will apply to new orders.


POST updateSellerAddressPoint()

Parameter Descriptions & Rules

The table below lists the input and output parameters of the updateSellerAddressPoint() operation along with their types and formats.

PARAMETERDESCRIPTIONDATA TYPELENGTHFIELD LOCATIONREQUIRMENT
processKeyprocessKey information defined for the clientstring100HeaderMandatory
sellerAddressPointIdSeller departure point IDInteger-inBody RequestMandatory
sellerAddressPointSeller departure point namestring30inBody RequestMandatory
sellerAddressCitySeller departure point citystring100inBody RequestMandatory
sellerAddressCountySeller departure point districtstring100inBody RequestMandatory
sellerAddressSeller departure point addressstring500inBody RequestMandatory
sellerAddressPostCodeSeller departure point postal codestring20inBody RequestMandatory
sellerAddressPhone1Seller departure point phone 1string20inBody RequestMandatory
sellerAddressPhone2Seller departure point phone 2string20inBody RequestOptional
sellerAddressEmailAddressSeller departure point email addressstring100inBody RequestMandatory
sellerAddressOfficialPersonSeller departure point authorized personstring100inBody RequestMandatory

Service Responses

You can access the successful/unsuccessful service responses here.