
com.contentstack.sdk.APIService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java Show documentation
Show all versions of java Show documentation
Java SDK for Contentstack Content Delivery API
package com.contentstack.sdk;
import okhttp3.ResponseBody;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.HeaderMap;
import retrofit2.http.Query;
import retrofit2.http.Url;
import java.util.LinkedHashMap;
import java.util.Map;
/**
* @author Shailesh Mishra
* @version 1.0.0
* @since 12-12-2021
*/
public interface APIService {
@GET
Call getRequest(
@Url String url, @HeaderMap LinkedHashMap headers);
@GET("v3/taxonomies/entries")
Call getTaxonomy(
@HeaderMap Map headers,
@Query("query") String query);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy