I have this endpoint
@RequestMapping(value = "/refresh")
public DataSource getMostRecentData() {
return s3DataStoreService.getMostRecentSource();
}
And I would like to know if it's possible to write a bamboo script that hits this endpoint, as part of the build task to build the project. I'm new to Bamboo so I would appreciate even a start on how to do this. Thank you.