Symantec Access Management

 View Only
  • 1.  Authorization

    Posted Feb 05, 2024 09:05 AM

    How to make a Authorization SOAP API call?



  • 2.  RE: Authorization

    Broadcom Employee
    Posted Feb 05, 2024 12:06 PM

    Here is a sample request which can be used to get the Questions using Web services. This sample uses Authentication and Authorization as well so need to pass the Admin credentials in the Header section, if that is not needed then the Header contents can be removed.

     
    <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><Admin-Name></userid>
                    <credential><Admin-password></credential>
       </soap:Header>
       <soap:Body>
          <msgs:GetQuestionsRequest>
             <!--Optional:-->
             <xsd:clientTxnId>123456</xsd:clientTxnId>
             <msgs:userName>USERNAME</msgs:userName>
             <!--Optional:-->
             <msgs:orgName>ORGNAME</msgs:orgName>
             </msgs:GetQuestionsRequest>
       </soap:Body>
    </soap:Envelope>