All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.contentstack.cms.stack.AuditLogService Maven / Gradle / Ivy

Go to download

Contentstack Java Management SDK for Content Management API, Contentstack is a headless CMS with an API-first approach

There is a newer version: 1.6.1
Show newest version
package com.contentstack.cms.stack;

import okhttp3.ResponseBody;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.HeaderMap;
import retrofit2.http.Path;
import retrofit2.http.QueryMap;

import java.util.HashMap;
import java.util.Map;

public interface AuditLogService {

    @GET("audit-logs")
    Call fetch(
            @HeaderMap Map headers,
            @QueryMap HashMap params);

    @GET("audit-logs/{log_item_uid}")
    Call fetch(
            @HeaderMap Map headers,
            @Path("log_item_uid") String logItemUid);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy