LoginSignup
0
0

More than 5 years have passed since last update.

CreateWebflow SOAP API with SoapUI 5.2.1

Posted at

"Create Webflow!" SOAP API with SoapUI 5.2.1

cf. http://www.createwebflow.jp/function/api.html

xFlow_SoapUI.jpg

doSelectWorkflowStatusWithSearch

/XFV20/services/wsWorkflowStatusManager.wsWorkflowStatusManagerHttpSoap11Endpoint/
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:stat="http://status.server.soap.xFlow.itarchitects.co.jp">
   <soapenv:Header/>
   <soapenv:Body>
      <stat:doSelectWorkflowStatusWithSearch>
         <!--Zero or more repetitions:-->
         <stat:criteria>APPLYER_MEMBER_ID</stat:criteria>
         <stat:criteria>A10007</stat:criteria>
      </stat:doSelectWorkflowStatusWithSearch>
   </soapenv:Body>
</soapenv:Envelope>

doSelectWorkflowMemberStatus

/XFV20/services/wsWorkflowStatusManager.wsWorkflowStatusManagerHttpSoap11Endpoint/
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:stat="http://status.server.soap.xFlow.itarchitects.co.jp">
   <soapenv:Header/>
   <soapenv:Body>
      <stat:doSelectWorkflowMemberStatus>
         <!--Optional:-->
         <stat:workflowID>A10007_20160614140943258</stat:workflowID>
      </stat:doSelectWorkflowMemberStatus>
   </soapenv:Body>
</soapenv:Envelope>

login

/XFV20/services/wsAuthenticationManager.wsAuthenticationManagerHttpSoap11Endpoint/
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:auth="http://auth.server.soap.xFlow.itarchitects.co.jp">
   <soapenv:Header/>
   <soapenv:Body>
      <auth:login>
         <!--Optional:-->
         <auth:userID>administrator</auth:userID>
         <!--Optional:-->
         <auth:password>administrator</auth:password>
      </auth:login>
   </soapenv:Body>
</soapenv:Envelope>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0