Class LinkedInProfileController

java.lang.Object
com.profile.searcher.rest.v1.LinkedInProfileController

@RestController @RequestMapping("/api/v1/linked-in") @Validated public class LinkedInProfileController extends Object
  • Constructor Details

    • LinkedInProfileController

      public LinkedInProfileController()
  • Method Details

    • searchAlumniLinkedInProfiles

      @PostMapping("/search") public org.springframework.http.ResponseEntity<SuccessResponseVO<Object>> searchAlumniLinkedInProfiles(@RequestBody @Valid @Valid LinkedInProfileSearchDTO linkedInProfileSearchDTO)
    • fetchScrapedAlumniProfiles

      @GetMapping("/fetch/{trackingId}") public org.springframework.http.ResponseEntity<SuccessResponseVO<Object>> fetchScrapedAlumniProfiles(@PathVariable UUID trackingId)
    • fetchAllAlumni

      @GetMapping("/fetch/all") public org.springframework.http.ResponseEntity<SuccessResponseVO<List<AlumniVO>>> fetchAllAlumni(@RequestParam int page, @RequestParam int limit)