Awesome Message SDK - v0.12.4
    Preparing search index...

    Interface CreateSmsTemplateRequest

    템플릿 생성 요청

    docs/nhn-sms-api/11-template.md

    interface CreateSmsTemplateRequest {
        categoryId: number;
        templateId: string;
        templateName: string;
        templateDesc?: string;
        sendNo: string;
        sendType: "0" | "1";
        title?: string;
        body: string;
        useYn: "Y" | "N";
        attachFileIdList?: number[];
    }
    Index

    Properties

    categoryId: number

    카테고리 ID (필수)

    templateId: string

    템플릿 ID (필수, 최대 50자)

    templateName: string

    템플릿명 (필수, 최대 50자)

    templateDesc?: string

    템플릿 설명 (최대 100자)

    sendNo: string

    발신 번호 (필수, 최대 13자)

    sendType: "0" | "1"

    발송 유형 (필수, "0":SMS, "1":LMS/MMS)

    title?: string

    제목 (MMS, 최대 120바이트)

    body: string

    본문 내용 (필수, SMS: 최대 255자, MMS: 최대 4000자)

    useYn: "Y" | "N"

    사용 여부 (필수, Y/N)

    attachFileIdList?: number[]

    첨부 파일 ID 목록 (최대 3개, MMS만)