Package co.novu.api.feeds
Interface FeedsApi
-
public interface FeedsApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description retrofit2.Call<FeedResponse>createFeed(FeedRequest request)retrofit2.Call<BulkFeedsResponse>deleteFeed(String feedId)retrofit2.Call<BulkFeedsResponse>getFeeds()
-
-
-
Field Detail
-
ENDPOINT
static final String ENDPOINT
- See Also:
- Constant Field Values
-
-
Method Detail
-
createFeed
@POST("feeds") retrofit2.Call<FeedResponse> createFeed(@Body FeedRequest request)
-
getFeeds
@GET("feeds") retrofit2.Call<BulkFeedsResponse> getFeeds()
-
deleteFeed
@DELETE("feeds/{feedId}") retrofit2.Call<BulkFeedsResponse> deleteFeed(@Path("feedId") String feedId)
-
-