Skip to main content

Extra information

System documentation:

Connector package documentation

Setting up SOAP Client FashionMaster Retail

Steps

  1. In Alumio Dashboard, go to Clients > SOAP Clients. Create a new SOAP Client and select FashionMaster SOAP Client as the prototype of the SOAP Client.
  2. Fill in the WSDL URI, Soap Version (Default is SOAP 1.1), and Storage for cache (Optional).
  3. Save and Continue. Note: The authentications needs the Alumio IP to be whitelisted, to get the IP go to Settings > Info > Environment

Subscribing to Entities from FashionMaster Retail

Steps

  1. Go to Connections -> Incoming and create a new incoming configuration and select FashionMaster Retail Subscriber as the subscriber.
  2. Select the soap Method you want to subscribe to from FashionMaster Retail.
  3. Add any request data needed to subscribe to the entity (optional).
  4. You can optionally add a transformer to transform the request parameters into something you need.
  5. Select the FashionMaster Retail SOAP Client to use.

General Concept

We follow FashionMaster Retail documentation on building this connector so you can easily use the connector based on FashionMaster Retail API Reference. Entity It’s the entity you want to subscribe to from FashionMaster Retail. Please refer to the entities in Management APIs from FashionMaster Retail API Reference page. Request Parameters These are the parameters you can provide to get the needed entity based on FashionMaster Retail API Reference. Please look at the example below on how to fill the Request Parameters field when subscribing GetCustomerDetails entity FashionMaster connector screenshot 1 FashionMaster connector screenshot 2 Input Transformer Any transformers set here will be executed after the Request Parameters are loaded. So, you basically can add any transformer to provide and transform the request parameters into anything you need either as path parameters and/or as query parameters of an entity. SOAP Client It’s the SOAP Client configuration or prototype you will use to access FashionMaster Retail.

Publishing Entity to FashionMaster Retail

Steps

  1. Go to Connections -> Outgoing, create a new outgoing configuration, and select FashionMaster Retail Publisher as the publisher.
  2. Select the action that you want the publisher to do with the data.
  3. Select the FashionMaster Retail entity you want the data to be published.
  4. Select the SOAP Client to use. FashionMaster connector screenshot 3

General Concept

Like the subscriber, the publisher has similar methods on how to use it. The difference is the payload that will be submitted by the publisher originating from the data (from routes, from transformers in outgoing configuration). Entity We support publishing to most FashionMaster Retail endpoints but not with publishing binary files at the moment. Please refer to the entities in Management APIs from the FashionMaster Retail API Reference page. Based on the documentation, some endpoints may need one or more path parameters. For endpoints that require an object as the request payload, please look at the example below. For example, we want to Create a AmendCustomer. Please select “CreateAmendCustomer” as the entity of the publisher. FashionMaster connector screenshot 4 FashionMaster connector screenshot 5 Here is the example of the Payload in JSON that we tried.
{
  "Town": "Boryspil",
  "Email": "Alumiotest@test.com",
  "Title": "Mister",
  "County": "Maten",
  "Surname": "Smith",
  "Address1": "London",
  "Address2": "Kyiv",
  "Forename": "John",
  "PostCode": "1005",
  "Telephone1": "+44123456789",
  "Telephone2": "+380123456789",
  "CompanyName": "Alumio",
  "CountryCode": "44",
  "FMCustomerCode": "news",
  "WebCustomerCode": 33,
  "LoyaltyCardNumber": "123321",
  "WhereHeardAboutUs": 2,
  "WholesaleCustomer": false,
  "CustUpdateLog_User": "This customer is a test customer",
  "CustUpdateLog_Utility": "Facebook internation ads",
  "WhereHeardAboutUsSpecific": "Facebook Ads"
}
You can put the payload you want to send to FashionMaster Retail into the payload property in the data. Here is an example of the Possible Response after Creation. FashionMaster connector screenshot 6 SOAP Client It’s the SOAP Client configuration or prototype you will use to access FashionMaster Retail.