Interface GeographicAddressApi

All Known Implementing Classes:
TmaGeographicAddressApiController

@Generated(value="de.hybris.platform.b2ctelcotmfwebservices.swagger.TelcoCodegen", date="2022-10-21T20:34:47.671Z") @Validated @RequestMapping("") public interface GeographicAddressApi
  • Method Details

    • createGeographicAddress

      @RequestMapping(value="/geographicAddress", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<GeographicAddress> createGeographicAddress(@Valid @RequestBody @Valid GeographicAddress geographicAddress, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid String relatedPartyPeriodid)
    • deleteGeographicAddress

      @RequestMapping(value="/geographicAddress/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=DELETE) org.springframework.http.ResponseEntity<Void> deleteGeographicAddress(@PathVariable("id") String id, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid String relatedPartyPeriodid)
    • geographicAddressFind

      @RequestMapping(value="/geographicAddress", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<GeographicAddress>> geographicAddressFind(@Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="baseSiteId",required=false) @Valid String baseSiteId, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyPeriodid, @Valid @RequestParam(value="offset",required=false) @Valid String offset, @Valid @RequestParam(value="limit",required=false) @Valid String limit)
    • getGeographicAddressById

      @RequestMapping(value="/geographicAddress/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<GeographicAddress> getGeographicAddressById(@PathVariable("id") String id, @Valid @RequestParam(value="fields",required=false) @Valid String fields, @Valid @RequestParam(value="relatedParty.id",required=false) @Valid String relatedPartyPeriodid)
    • updateGeographicAddressById

      @RequestMapping(value="/geographicAddress/{id}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<GeographicAddress> updateGeographicAddressById(@PathVariable("id") String id, @Valid @RequestBody @Valid GeographicAddress geographicAddress, @NotNull @Valid @RequestParam(value="relatedParty.id",required=true) @NotNull @Valid String relatedPartyPeriodid)