getDocs
Listar documentos
Overview
Usage:
import docs.DocRequests;
import response.DocsResponse;
import services.JsonConverter;String apiToken = "YOUR TOKEN";try {
DocsResponse docsResponse = new DocRequests(apiToken).getDocs();
String jsonDocResponse = new JsonConverter().docsResponseToJson(docsResponse);
System.out.println(jsonDocResponse);
}
catch(Exception exceptionError) {
System.out.println(exceptionError.getMessage());
}