문서 승인 url 생성
개요
문서 승인을 위한 페이지의 url을 생성합니다.
URL
/api/v1/document/{id}/approve
요청 데이터
항목 | 타입 | 위치 | 설명 |
---|
id | String | query | 문서 아이디 |
응답 데이터
항목 | 타입 | 위치 | 설명 |
---|
document | Object | body | 문서 |
approve | Object | body | 승인 대기 문서 |
id | String | body | 문서 아이디 |
title | String | body | 제목 |
name | String | body | 생성자 이름 |
email | String | body | 생성자 이메일 |
approval_url | String | body | 문서 승인을 위한 페이지 주소 |
status | String | body | 결과 상태 |
message | String | body | 결과 메시지 |
성공 응답 데이터 예시
{
"document": {
"approve": {
"id": "문서 아이디",
"title": "제목",
"name": "생성자 이름",
"email": "생성자 이메일",
"approval_url": "문서 승인을 위한 페이지 주소"
},
"status" : "success"
}
}
실패 응답 데이터 예시
{
"document": {
"status": "failure",
"message": "실패 메시지"
}
}
예제 코드
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
Request request = new Request.Builder()
.url("https://doc.signok.com/api/v1/document/{id}/approve")
.method("GET", null)
.addHeader("Content-Type", "application/json")
.addHeader("Authorization", "Bearer ACCESS_TOKEN")
.build();
Response response = client.newCall(request).execute();
var client = new RestClient("https://doc.signok.com/api/v1/document/{id}/approve");
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Content-Type", "application/json");
request.AddHeader("Authorization", "Bearer ACCESS_TOKEN");
IRestResponse response = client.Execute(request);
Console.WriteLine(response.Content);
var myHeaders = new Headers();
myHeaders.append("Content-Type", "application/json");
myHeaders.append("Authorization", "Bearer ACCESS_TOKEN");
var requestOptions = {
method: "GET",
headers: myHeaders,
redirect: "follow"
};
fetch("https://doc.signok.com/api/v1/document/{id}/approve", requestOptions)
.then(response => response.text())
.then(result => console.log(result))
.catch(error => console.log("error", error));
var axios = require("axios");
var config = {
method: "GET",
url: "https://doc.signok.com/api/v1/document/{id}/approve",
headers: {
"Content-Type": "application/json",
"Authorization": "Bearer ACCESS_TOKEN"
},
};
axios(config)
.then(function (response) {
console.log(JSON.stringify(response.data));
})
.catch(function (error) {
console.log(error);
});
import http.client
requestData = ""
conn = http.client.HTTPSConnection("doc.signok.com")
headers = {
"Content-Type": "application/json",
"Authorization": "Bearer ACCESS_TOKEN"
}
conn.request("GET", "/api/v1/document/{id}/approve", requestData, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))