GetSubscribersVarsResponse

  • Type: array object[] · GetSubscriberVarsResponse[]
    • customLabel
      Type: string

      구독 화면에서 표시할 사용자 정의 필드 이름

    • defaultValue
      Type: string

      메일머지 치환자를 구독자 정보로 치환할 때, 저장된 값이 없을 때 사용하는 값

    • id
      Type: integer

      사용자 정의 필드 아이디

    • isMandatory
      Type: boolean

      필수 값 여부

    • isVisible
      Type: boolean

      필드 표시 여부

    • label
      Type: string

      사용자 정의 필드를 구분하기 위한 이름

    • substitution
      Type: string

      메일머지 치환자를 입력하거나 구독자 정보를 API로 전송할 때 사용하는 값

    • type
      Type: string

      사용자 정의 필드 유형(예. 텍스트, 드롭다운)

    • typeOption
      Type: object

      사용자 정의 필드 유형에 따른 부가 옵션

Examples
[
  {
    "id": 60723,
    "label": "이메일 주소",
    "substitution": "email",
    "defaultValue": "",
    "isMandatory": true,
    "customLabel": "",
    "type": "text",
    "typeOption": {},
    "isVisible": false
  },
  {
    "id": 60724,
    "label": "이름",
    "substitution": "name",
    "defaultValue": "",
    "isMandatory": false,
    "customLabel": "",
    "type": "text",
    "typeOption": {},
    "isVisible": false
  }
]