接口 WebhookService


public interface WebhookService
  • 方法详细资料

    • createSession

      @POST("/gateway/webhook/sessions") retrofit2.Call<HTTPReady> createSession(@Body HTTPIdentity identity)
    • CheckSessions

      @PATCH("/gateway/webhook/sessions?action=check") retrofit2.Call<HTTPSession[]> CheckSessions()
    • sessionList

      @GET("/gateway/webhook/sessions") retrofit2.Call<HTTPSession[]> sessionList()
    • removeSession

      @DELETE("/gateway/webhook/sessions/{session_id}") retrofit2.Call<String> removeSession(@Path("session_id") String sessionID)