템플릿 숨김 설정
Request
PUT https://api.solapi.com/kakao/v1/templates/:templateId/hide템플릿의 숨김 여부를 설정합니다.
Authorization 인증 필요 [?]
계정 권한
회원 권한
계정 상태
회원 상태
계정 인증
kakao:write
role-kakao:write
ACTIVE
ACTIVE
O
Path Parameters
Name
Description
:templateId
템플릿 고유 아이디
Request Structure
{
    "isHidden": "boolean"
}Body Params
Name
Type
Required
Description
isHidden
boolean
O
설명 없음
Samples
hidTemplate.spec.js
Sample Request
{
    "isHidden": true
}Sample Response
{
    "isHidden": true,
    "accountId": "12925149",
    "templateId": "KA01TP200923054509625rpI2FXLASpp",
    "name": "THISISNAME",
    "pfId": "KA01PF06981701923709182736123232",
    "codes": [
        {
            "status": "PENDING",
            "code": "bizp_201903121650392510222222",
            "service": "daou",
            "comments": []
        },
        {
            "status": "APPROVED",
            "comments": [],
            "code": "bizp_201903121650392510211111",
            "service": "biz"
        }
    ],
    "content": "#{홍길동}님 회원가입을 환영 합니다.",
    "dateCreated": "2021-01-29T01:27:41.247Z",
    "dateUpdated": "2021-01-29T01:27:41.253Z",
    "buttons": []
}Sample Code
var request = require('request');
var options = {
  headers: {
    Authorization:
      'HMAC-SHA256 apiKey=NCSAYU7YDBXYORXC, date=2019-07-01T00:41:48Z, salt=jqsba2jxjnrjor, signature=1779eac71a24cbeeadfa7263cb84b7ea0af1714f5c0270aa30ffd34600e363b4',
    'Content-Type': 'application/json'
  },
  body: {
    isHidden: true
  },
  method: 'PUT',
  json: true,
  url:
    'http://api.solapi.com/kakao/v1/templates/KA01TP200923054509625rpI2FXLASpp/hide'
};
request(options, function(error, response, body) {
  if (error) throw error;
  console.log('result :', body);
});<?php
$url = "http://api.solapi.com/kakao/v1/templates/KA01TP200923054509625rpI2FXLASpp/hide";
$data = '{"isHidden":true}';
$options = array(
    'http' => array(
        'header'  => "Authorization: HMAC-SHA256 apiKey=NCSAYU7YDBXYORXC, date=2019-07-01T00:41:48Z, salt=jqsba2jxjnrjor, signature=1779eac71a24cbeeadfa7263cb84b7ea0af1714f5c0270aa30ffd34600e363b4\r\n" . "Content-Type: application/json\r\n",
        'content' => $data,
        'method'  => 'PUT'
    )
);
$context  = stream_context_create($options);
$result = file_get_contents($url, false, $context);
var_dump($result);import requests
url = "http://api.solapi.com/kakao/v1/templates/KA01TP200923054509625rpI2FXLASpp/hide"
headers = {
  "Authorization": "HMAC-SHA256 apiKey=NCSAYU7YDBXYORXC, date=2019-07-01T00:41:48Z, salt=jqsba2jxjnrjor, signature=1779eac71a24cbeeadfa7263cb84b7ea0af1714f5c0270aa30ffd34600e363b4",
  "Content-Type": "application/json"
}
data = '{"isHidden":true}'
response = requests.put(url, headers=headers, data=data)
print(response.status_code)
print(response.text)#!/bin/bash
curl -X PUT \
    -H 'Authorization: HMAC-SHA256 apiKey=NCSAYU7YDBXYORXC, date=2019-07-01T00:41:48Z, salt=jqsba2jxjnrjor, signature=1779eac71a24cbeeadfa7263cb84b7ea0af1714f5c0270aa30ffd34600e363b4' \
    -H 'Content-Type: application/json' \
    -d '{"isHidden":true}' \
    http://api.solapi.com/kakao/v1/templates/KA01TP200923054509625rpI2FXLASpp/hiderequire 'net/http'
require 'uri'
require 'json'
uri = URI.parse("http://api.solapi.com/kakao/v1/templates/KA01TP200923054509625rpI2FXLASpp/hide")
headers = {
  "Authorization": "HMAC-SHA256 apiKey=NCSAYU7YDBXYORXC, date=2019-07-01T00:41:48Z, salt=jqsba2jxjnrjor, signature=1779eac71a24cbeeadfa7263cb84b7ea0af1714f5c0270aa30ffd34600e363b4",
  "Content-Type": "application/json"
}
data = {
  "isHidden": true
}
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Put.new(uri.request_uri, headers)
request.body = data.to_json
response = http.request(request)
puts response.code
puts response.bodypackage main
import (
  "fmt"
  "io/ioutil"
  "net/http"
  "strings"
)
func main() {
  uri := "http://api.solapi.com/kakao/v1/templates/KA01TP200923054509625rpI2FXLASpp/hide"
  data := strings.NewReader(`{"isHidden":true}`)
  req, err := http.NewRequest("PUT", uri, data)
  if err != nil { panic(err) }
  req.Header.Set("Authorization", "HMAC-SHA256 apiKey=NCSAYU7YDBXYORXC, date=2019-07-01T00:41:48Z, salt=jqsba2jxjnrjor, signature=1779eac71a24cbeeadfa7263cb84b7ea0af1714f5c0270aa30ffd34600e363b4")
  req.Header.Set("Content-Type", "application/json")
  client := &http.Client{}
  resp, err := client.Do(req)
  if err != nil { panic(err) }
  defer resp.Body.Close()
  bytes, _ := ioutil.ReadAll(resp.Body)
  str := string(bytes)
  fmt.Println(str)
}package solapi;
import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
public class Request {
  public static void main(String[] args) throws Exception {
    String targetUrl = "http://api.solapi.com/kakao/v1/templates/KA01TP200923054509625rpI2FXLASpp/hide";
    String parameters = "{\"isHidden\":true}";
    URL url = new URL(targetUrl);
    HttpURLConnection con = (HttpURLConnection) url.openConnection();
    con.setRequestMethod("PUT");
    con.setRequestProperty("Authorization", "HMAC-SHA256 apiKey=NCSAYU7YDBXYORXC, date=2019-07-01T00:41:48Z, salt=jqsba2jxjnrjor, signature=1779eac71a24cbeeadfa7263cb84b7ea0af1714f5c0270aa30ffd34600e363b4");
    con.setRequestProperty("Content-Type", "application/json");
    con.setDoOutput(true);
    DataOutputStream wr = new DataOutputStream(con.getOutputStream());
    wr.writeBytes(parameters);
    wr.flush();
    wr.close();
    int responseCode = con.getResponseCode();
    BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
    String line;
    StringBuffer response = new StringBuffer();
    while ((line = in.readLine()) != null) {
      response.append(line);
    }
    in.close();
    System.out.println("HTTP response code : " + responseCode);
    System.out.println("HTTP body : " + response.toString());
  }
}문서 생성일 : 2021-01-29
Last updated
Was this helpful?