Call Web API in Appian

Hello Everyone,

I have created an web API in Appian which accept data in JSON and store in CDT,

I have tested that API in Appian itself it's working, 

Now I have to call that API through other platform eg. Salesforce, so i can execute that API and store data into Appian

So how can i make it possible???

Need Help. 

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    Hello Amit,

    Just consume web api url to desired third party systems by using basic authorization(Appian credentials).
  • Hi jaidw,
    I tried to call same url but showing error 401,
    how to make basic authorization(Appian credentials) possible for given API??
  • +1
    Certified Lead Developer
    in reply to amitb0004
    Hello Amit,
    You can pass the Authorization token as pasrt of header. with key "Authorization" the value is token norally starts with "Basic...".

    You mentioned that you tested in Appian itself.
    I would suggest you to test your WEB API through any API tester tool like postman. With Postman the Authorization key will get generated automatically. Based on the credentials provided by you.
Reply
  • +1
    Certified Lead Developer
    in reply to amitb0004
    Hello Amit,
    You can pass the Authorization token as pasrt of header. with key "Authorization" the value is token norally starts with "Basic...".

    You mentioned that you tested in Appian itself.
    I would suggest you to test your WEB API through any API tester tool like postman. With Postman the Authorization key will get generated automatically. Based on the credentials provided by you.
Children
  • Hello karthikr968,

    Thanks for your guidance,

    I used and Postman and Advanced REST client  tool in chrome extension, where i mapped username and password in header, now it's working the  Authorization  issues is resolved.

     Advanced REST client tool

    And also done with call API in salesforce.... :)