Package co.novu.api.messages
Interface MessageApi
-
public interface MessageApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description retrofit2.Call<DeleteMessageResponse>deleteMessage(String messageId)retrofit2.Call<MessageResponse>getMessages(Map<String,Object> options)
-
-
-
Field Detail
-
ENDPOINT
static final String ENDPOINT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMessages
@GET("messages") retrofit2.Call<MessageResponse> getMessages(@QueryMap Map<String,Object> options)
-
deleteMessage
@DELETE("messages/{messageId}") retrofit2.Call<DeleteMessageResponse> deleteMessage(@Path("messageId") String messageId)
-
-