Class SelfScorecardApiResource

java.lang.Object
org.apache.fineract.portfolio.self.spm.api.SelfScorecardApiResource

@Path("/v1/self/surveys/scorecards") @Component @Conditional(SelfServiceModuleIsEnabledCondition.class) public class SelfScorecardApiResource extends Object
  • Constructor Details

    • SelfScorecardApiResource

      public SelfScorecardApiResource()
  • Method Details

    • findByClient

      @GET @Path("clients/{clientId}") @Consumes("application/json") @Produces("application/json") @Transactional public List<ScorecardData> findByClient(@PathParam("clientId") Long clientId)
    • createScorecard

      @POST @Path("{surveyId}") @Consumes("application/json") @Produces("application/json") @Transactional public void createScorecard(@PathParam("surveyId") Long surveyId, ScorecardData scorecardData)