Interface SubscriptionsApi
- All Known Implementing Classes:
SubscriptionsApiController
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2022-09-25T19:34:30.087552571Z[Etc/UTC]")
@Validated
public interface SubscriptionsApi
-
Method Summary
Modifier and TypeMethodDescriptiondefault reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<reactor.core.publisher.Flux<Subscription>>>getSubscriptions(UUID xRequestID, org.springframework.web.server.ServerWebExchange exchange) GET /subscriptions : Получение списка подписок
-
Method Details
-
getSubscriptions
@RequestMapping(method=GET, value="/subscriptions", produces="application/json") default reactor.core.publisher.Mono<org.springframework.http.ResponseEntity<reactor.core.publisher.Flux<Subscription>>> getSubscriptions(@RequestHeader(value="X-Request-ID",required=true) UUID xRequestID, org.springframework.web.server.ServerWebExchange exchange) GET /subscriptions : Получение списка подписок- Parameters:
xRequestID- Уникальный идентификатор запроса к системе (required)- Returns:
- Получен список подписок (status code 200) or Переданы ошибочные данные (status code 400) or Несанкционированный доступ, использовались неверные учетные данные. (status code 401) or Доступ запрещен. (status code 403)
-