REST web service api Listener

Hi,

I am new to appian integrations .

 

 

we need to develop a listener which can be accessed from an outside Java application through a REST web service api call . Once the listener receives the call , it starts the process and save the data to appian database . 

 

which smart service should i use ? any help appreciated 

  Discussion posts and replies are publicly visible

Parents Reply
  • You can do it using Jersey API. All you need to do is, Create a Third Party Credential from Admin Console, (Additionally add the client URL who is going to access the API at: Admin Console > Embedded Interfaces > New Allowed Origin, only in case if you are facing Cross Origin issue while accessing the service) , Now in java application use Jersey API and write the logic accordingly for the type of request i mean GET, POST. And u need to use HttpAuthenticationFeature to authorize the user while accessing the Service.
Children