템플릿을 선택해서 계약서를 발송합니다.
서비스가 그룹기능을 사용하는 경우 반드시 send_group, send_member 를 지정해야 합니다.

📘

발송형태

  • 발송은 일반(동시)발송, 다자간발송(동시, 순차) 으로 나누어집니다.

  • 다자간 발송은 발송대상 폼이 다자간 설정이 되어 있어야 가능합니다.

  • 다자간 발송은 최대 5명의 다자설정이 가능합니다.

  • 발신자는 발송 전에 미리 값을 입력할 수 있습니다. 이값은 수신자에게 노출되며 수신자는 이 값을 수정할 수 없습니다.

  • receiver_list 의 최대 갯수는 20 입니다.

  • receiver_list 은 수신자 정보를 나타내는 배열이며 다자간 발송인 경우 순서에 영향을 받습니다.

BODY PARAMS EXAMPLE

// 순차발송
{    
    // 폼 ID, 다자간(수신자) 설정이 되어 있어야 합니다.    
    "form_id": "3f2caeea8daf3b3f6dd816bb",
    // 계약서 제목  
    "title": "2020 표준 근로계약서",    
    // 발송순서      
    "send_type": "SEQUENTIAL",
    // 계약서 만료일자      
    "expiration_date": "20200930",
    // 계약서 접근 비밀번호       
    "password": "72348934"
    // 휴대폰 본인인증 여부, 수신자 모두 전화번호 있어야 합니다.  
    "auth_phone": "Y",
    // 계약요청메일 제목
    "mail_title": "근로계약 요청드립니다.",
    // 계약요청메일 본문
    "mail_content": "근로계약 요청드립니다.",
    // 수신자 정보      
    "receiver_list": [
        {
            // 수신자 이름
            "name": "홍길동",
            // 수신자 이메일
            "email": "[email protected]",
            // 수신자 전화번호
            "mobile": "01033224455"
        },
        {
            "name": "황진이",
            "email": "[email protected]",
            // 수신자별 계약서 접근 비밀번호                 
          	"password": "1234",
            // 수신자 전화번호
            "mobile": "01033224456"          
        },
        {
            "name": "심청이",
            "email": "[email protected]",
            // 수신자 전화번호
            "mobile": "01033224457"          
        }                        
    ]
}
// 동시발송
{    
    "form_id": "3f2caeea8daf3b3f6dd816bb",
    "title": "2020 표준 근로계약서",    
    // 발송순서      
    "send_type": "SAMETIME",
    "expiration_date": "20200930",
    "auth_phone": "N",
    "mail_title": "근로계약 요청드립니다.",
    "mail_content": "근로계약 요청드립니다.",
    "receiver_list": [
        {
            // 수신자 이름
            "name": "홍길동",
            // 수신자 이메일
            "email": "[email protected]",
            // 수신자 전화번호
            "mobile": "01033224455"
        },
        {
            "name": "황진이",
            "email": "[email protected]"
        },
        {
            "name": "심청이",
            "email": "[email protected]"
        }                        
    ]
}
// 동시발송 사전입력
{   
    "form_id": "3f2caeea8daf3b3f6dd816bb",
    "title": "2020 표준 근로계약서",    
    // 동시전송      
    "send_type": "SAMETIME",
    "expiration_date": "20200930",
    "auth_phone": "N",
    "mail_title": "근로계약 요청드립니다.",
    "mail_content": "근로계약 요청드립니다.",
    "receiver_list": [
        {
            // 수신자 이름
            "name": "홍길동",
            // 수신자 이메일
            "email": "[email protected]",
            // 수신자 전화번호
            "mobile": "01033224455"
        },
        {
            "name": "황진이",
            "email": "[email protected]"
        },
        {
            "name": "심청이",
            "email": "[email protected]"
        }                        
    ],
    // 발송전 발신자가 입력한 값이며, 수신자에게 노출되지만 수정할 수 없습니다.      
    "items": [
        {
            "id": "5f617ae72cc74051be000002",
            "value": "사전작성값입니다"
        },
        {
            "id": "5f617b422cc74051be000003",
            "value": "50000"
        }
    ]      
}
// 동시발송 그룹
{   
    // 폼 ID, 다자간(수신자) 설정이 되어 있어야 합니다.
    "form_id": "3f2caeea8daf3b3f6dd816bb",
    "title": "2020 표준 근로계약서",    
    // 동시전송      
    "send_type": "SAMETIME",
    "expiration_date": "20200930",
    "auth_phone": "N",
    "mail_title": "API 테스트 메일",
    "mail_content": "API 테스트 메일입니다",
    "receiver_list": [
        {
            // 수신자 이름
            "name": "홍길동",
            // 수신자 이메일
            "email": "[email protected]",
            // 수신자 전화번호
            "mobile": "01033224455"
        },
        {
            "name": "황진이",
            "email": "[email protected]"
        },
        {
            "name": "심청이",
            "email": "[email protected]"
        }                        
    ]
}
Language
Authorization
Click Try It! to start a request and see the response here!