Class PexipRestService

java.lang.Object
org.exoplatform.webconferencing.pexip.PexipRestService

@RestController @RequestMapping("pexip") public class PexipRestService extends Object
  • Constructor Details

    • PexipRestService

      public PexipRestService()
  • Method Details

    • createMeeting

      @PostMapping(path="createMeeting") @Secured("users") @ResponseStatus(NO_CONTENT) public org.springframework.http.ResponseEntity createMeeting(@RequestParam("alias") String alias, @RequestParam(value="startTimeStamp",required=false) String startTimeStamp, @RequestParam(value="endTimeStamp",required=false) String endTimeStamp, @RequestBody(required=false) String recurrence)
    • deleteMeeting

      @DeleteMapping(path="deleteMeeting") @Secured("users") @ResponseStatus(NO_CONTENT) public org.springframework.http.ResponseEntity deleteMeeting(@RequestParam("alias") String alias)