- All Known Implementing Classes:
WebhookApiController
@Generated(value="org.openapitools.codegen.languages.SpringCodegen",
date="2023-05-04T13:06:45.139911129Z[Etc/UTC]")
@Validated
public interface WebhookApi
-
Method Summary
-
Method Details
-
-
notifyWebhookEvent
@RequestMapping(method=POST,
value="/webhook",
produces="application/json; charset=utf-8",
consumes="application/json")
default org.springframework.http.ResponseEntity<Void> notifyWebhookEvent(
@RequestHeader(value="Content-Signature",required=true)
String contentSignature,
@Valid @RequestBody
@Valid Event event)
POST /webhook : Оповестить о событии
- Parameters:
contentSignature - Подпись сообщения, сформированная согласно указанным выше правилам (required)
event - Данные произошедшего в платформе события (required)
- Returns:
- Оповещение обработано (status code 200)
or Заданный ресурс не найден (status code 404)