Contact social login service test account

When using underneath, I accept related terms and conditions

MOSA is a demo museum. The service can be freely tested with this account, within the limits of a reasonable and fair use.

WSDL and credentials

The WSDL of this webservice can be accessed at the following urls:

https://mosa.demo-ws.secutix.com/tnco/external-remoting/com.secutix.service.contact.sociallogin.v1_0.ContactSocialLoginService.webservice?wsdl

The test login is : MOSA_B2C The test password is : P@ssw0rd

REST

The REST endpoint of this service can be accessed at the following URL using POST method.

To generate the JWT, The Virtual Operator is: MOSA_B2C The secret key is: your-256-bit-secret
You need to have an interface linked to a sales channel and this virtual operator.

Example call

Call to createUser (SOAP)
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:v1="http://v1_0.ContactSocialLoginService.sociallogin.service.secutix.com/"  
  xmlns:ns2="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
   <soapenv:Header>
      <ns2:Security soapenv:mustUnderstand="1">
         <ns2:UsernameToken>
            <ns2:Username>MOSA_B2C</ns2:Username>
            <ns2:Password>P@ssw0rd</ns2:Password>
         </ns2:UsernameToken>
      </ns2:Security>
   </soapenv:Header>
   <soapenv:Body>
      <v1:createUser>
         <!--Optional:-->
         <signUpData>
            <email></email>
            <firstname>Maxwell</firstname>
            <gender>MR</gender>
            <lang>EN</lang>
            <lastname>SilverHammer</lastname>
            <phoneNumber>797997979</phoneNumber>
            <phonePrefix>41</phonePrefix>
            <title>MR</title>
         </signUpData>
         <!--Optional:-->
         <provider>ACCOUNT_KIT</provider>
         <!--Optional:-->
         <providerUserReference>1520956517919901</providerUserReference>
      </v1:createUser>
   </soapenv:Body>
</soapenv:Envelope>
Call to createUser (REST)
{
   "signUpData": {
      "email": [],
      "firstname": "Maxwell",
      "gender": "MR",
      "lang": "EN",
      "lastname": "SilverHammer",
      "phoneNumber": "797997979",
      "phonePrefix": "41",
      "title": "MR"
   },
   "provider": "ACCOUNT_KIT",
   "providerUserReference": "1520956517919901"
}