Forum Discussion

10 Replies

  • bojanvelevski's avatar
    bojanvelevski
    Valued Contributor

    Hi @Pretty,

    There’s two ways of adding authorization to your REST call. One is to create a REST Basic Auth Account with your SnapLogic user and password as credentials, and the other is to add your authorization code as a header.

    Authorization code will again be a Base64 encoded version of your SL credentials. Use the following expression in a mapper:

    Base64.encode('username@snaplogic.com:password')

    And add the result code in a header like below:

    Regards,
    Bojan

  • Pretty's avatar
    Pretty
    New Contributor III

    Yes I corrected

    Thank you all for you time, It helped me a lot