현재 비즈니스에 등록된 전자서명 템플릿 목록을 확인할 수 있습니다.
GET
kit-api/v1/signature-templates
...kit-api/v1/signature-templates?limit=10&offset=0
{
"ok": true, // api 성공 여부
"message": undefined, // Error가 존재하면 message(string)로 전달
"data": {
"templates": [
// 전자서명 템플릿 목록
{
"id": 12345, // 고유 식별 id
"name": "MOU 템플릿", // 전자서명 템플릿 이름
"contractFile": "....pdf", // 전자서명 템플릿으로 등록한 계약 문서 url
"createdAt": "2024-07-15T00:00:00.000Z", // 생성일
"ccEmails": ["cc@prix.im"], // 워크플로우 이메일 참조자
"participants": [
{
// 전자서명 참여자
"id": 987, // 고유 식별 id
"order": 1, // 전자서명 참여 순서
"role": "고객" // 역할 이름 (ex. 갑, 고객, 등)
}
]
}
],
"total": 1
}
}