Interface ListReportMailingJobHistoryApi
public interface ListReportMailingJobHistoryApi
-
Method Summary
Modifier and TypeMethodDescriptionretrofit2.Call<ReportMailingJobRunHistoryData> retrieveAllByReportMailingJobId(Long reportMailingJobId, Integer offset, Integer limit, String orderBy, String sortOrder) List Report Mailing Job History The list capability of report mailing job history can support pagination and sorting.retrofit2.Call<ReportMailingJobRunHistoryData> retrieveAllByReportMailingJobId(Long reportMailingJobId, Integer offset, Integer limit, String orderBy, String sortOrder, Map<String, String> headers) List Report Mailing Job History The list capability of report mailing job history can support pagination and sorting.
-
Method Details
-
retrieveAllByReportMailingJobId
@GET("v1/reportmailingjobrunhistory") retrofit2.Call<ReportMailingJobRunHistoryData> retrieveAllByReportMailingJobId(@Query("reportMailingJobId") Long reportMailingJobId, @Query("offset") Integer offset, @Query("limit") Integer limit, @Query("orderBy") String orderBy, @Query("sortOrder") String sortOrder) List Report Mailing Job History The list capability of report mailing job history can support pagination and sorting. Example Requests: reportmailingjobrunhistory/1- Parameters:
reportMailingJobId- reportMailingJobId (optional)offset- offset (optional)limit- limit (optional)orderBy- orderBy (optional)sortOrder- sortOrder (optional)- Returns:
- Call<ReportMailingJobRunHistoryData>
-
retrieveAllByReportMailingJobId
@GET("v1/reportmailingjobrunhistory") retrofit2.Call<ReportMailingJobRunHistoryData> retrieveAllByReportMailingJobId(@Query("reportMailingJobId") Long reportMailingJobId, @Query("offset") Integer offset, @Query("limit") Integer limit, @Query("orderBy") String orderBy, @Query("sortOrder") String sortOrder, @HeaderMap Map<String, String> headers) List Report Mailing Job History The list capability of report mailing job history can support pagination and sorting. Example Requests: reportmailingjobrunhistory/1- Parameters:
reportMailingJobId- reportMailingJobId (optional)offset- offset (optional)limit- limit (optional)orderBy- orderBy (optional)sortOrder- sortOrder (optional)- Returns:
- Call<ReportMailingJobRunHistoryData>
-