Expose data to external system

Certified Senior Developer

Hi All ,

Need to send the data from appian to external system and set flag to yes for all the rows which has been sent successfully in Appian table to ignore these rows for next set of data to send. What is the best way to do this.

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    When we talk about implementing a web API that other systems can call to query data, I recommend to not store any data locally, but to let the other system decide what to put into the response. A frequently used approach is to add paging info like start index and batch size to the call. Then you API can fetch the requested data and send it back.

Reply
  • 0
    Certified Lead Developer

    When we talk about implementing a web API that other systems can call to query data, I recommend to not store any data locally, but to let the other system decide what to put into the response. A frequently used approach is to add paging info like start index and batch size to the call. Then you API can fetch the requested data and send it back.

Children
No Data