GetQuestions() soap API sample request with Authentication and Authorization enabled
search cancel

GetQuestions() soap API sample request with Authentication and Authorization enabled

book

Article ID: 205165

calendar_today

Updated On:

Products

CA Advanced Authentication - Strong Authentication (AuthMinder / WebFort) CA Strong Authentication CA Rapid App Security CA Risk Authentication CA Advanced Authentication

Issue/Introduction

This KB article provides a sample request for QnA for GetQuestions Soap API.

Environment

Release : 9.1

Component : AuthMinder(Arcot WebFort)

Resolution

Here is a sample request which can be used to get the Questions using Web services. Please pass the correct Admin credentials in the Header and also please modify the User and Organization as per your need in the below request, this is a sample request only.
 
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:msgs="http://ws.arcot.com/WebFortAuthAPI/7.0/msgs" xmlns:xsd="http://ws.arcot.com/WebFortCommonAPI/7.0/xsd">
   <soap:Header>
                <orgname>DEFAULTORG</orgname>
                <userid>globaladmin</userid>
                <credential>password</credential>
   </soap:Header>
   <soap:Body>
      <msgs:GetQuestionsRequest>
         <!--Optional:-->
         <xsd:clientTxnId>123456</xsd:clientTxnId>
         <msgs:userName>TESTUSER1</msgs:userName>
         <!--Optional:-->
         <msgs:orgName>DEFAULTORG</msgs:orgName>
         </msgs:GetQuestionsRequest>
   </soap:Body>
</soap:Envelope>