Symantec Access Management

 View Only
  • 1.  Authorization in SOAP API calls

    Posted Feb 02, 2024 05:48 AM

    Hi All,

    How can you verify authorization in SOAP API calls within CA Advanced Authentication? Additionally, could you provide sample details if available?

    Thanks in Advance.

    Regards,

    Idaya



  • 2.  RE: Authorization in SOAP API calls

    Broadcom Employee
    Posted Feb 05, 2024 12:04 PM

    Hello Idaya,

    Here is a sample request which uses the GetQuestions() Web services. This sample uses Authentication and Authorization(AnA) 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>



  • 3.  RE: Authorization in SOAP API calls

    Posted Feb 06, 2024 01:06 AM

    Hi Namish Tiwari,

    Thanks for the  information.

    Regards,

    Idaya