Interface PartyRoleApi
- All Known Implementing Classes:
PrPartyRoleController
@Generated(value="de.hybris.platform.partyroletmfwebservices.swagger.PrPartyRoleCodegen",
date="2022-10-21T20:35:30.099Z")
@Validated
@RequestMapping("")
public interface PartyRoleApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<PartyRole>createPartyRole(@Valid PartyRole partyRole) org.springframework.http.ResponseEntity<Void>listPartyRole(@Valid String fields, @Valid Integer offset, @Valid Integer limit, @Valid String name, @Valid String status) org.springframework.http.ResponseEntity<PartyRole>patchPartyRole(String id, @Valid PartyRole partyRole) org.springframework.http.ResponseEntity<PartyRole>retrievePartyRole(String id, @Valid String fields)
-
Method Details
-
createPartyRole
-
deletePartyRole
-
listPartyRole
@RequestMapping(value="/partyRole", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<PartyRole>> listPartyRole(@Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="offset",required=false) @Valid Integer offset, @Valid @RequestParam(value="limit",required=false) @Valid Integer limit, @Valid @RequestParam(value="name",required=false) @Valid String name, @Valid @RequestParam(value="status",required=false) @Valid String status) -
patchPartyRole
-
retrievePartyRole
@RequestMapping(value="/partyRole/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<PartyRole> retrievePartyRole(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
-