Skip to main content Link Menu Expand (external link) Document Search Copy Copied

템플릿 목록 개수 조회

개요

템플릿의 개수를 조회합니다.


URL

/api/v1/template/count

요청 데이터

항목타입위치설명
titleStringbody제목 검색어

요청 데이터 예시

{
  "title": "제목 검색어"
}

응답 데이터

항목타입위치설명
templateObjectbody 
countIntegerbody개수

응답 데이터 예시

{
  "template": {
    "count": 10
  }
}

예제 코드

String requestData = "{\"title\":\"제목 검색어\"}";

OkHttpClient client = new OkHttpClient().newBuilder()
  .build();

MediaType mediaType = MediaType.parse("application/json");

RequestBody body = RequestBody.create(mediaType, requestData);

Request request = new Request.Builder()
  .url("https://doc.signok.com/api/v1/template/count")
  .method("POST", body)
  .addHeader("Content-Type", "application/json")
  .addHeader("Authorization", "Bearer ACCESS_TOKEN")
  .build();

Response response = client.newCall(request).execute();

Back to top

COPYRIGHT (C) 2022 KICA INC. ALL RIGHTS RESERVED