마이크로소프트 팀즈

앱 추가하기 > 팀즈

  • 메시지 입력 방식: 텍스트와 JSON 중 한 개를 선택합니다.

    • 텍스트: 팀즈에서 메시지를 보내듯이 일반 텍스트 형태로 작성합니다. 내용 입력창을 클릭하면 참조할 수 있는 데이터 칼럼 리스트가 뜹니다. 원하는 칼럼을 선택 후 사용할 수 있습니다.

CARD JSON 작성예시

{   
  "type": "message",   
  "attachments": [     
    {
      "contentType": "application/vnd.microsoft.card.hero",      
      "content": {
        "title": "This is a title",    
        "subtitle": "This is a subtitle",      
        "text": "This is a line of text. Use this format  to use task results."
      }
    } 
  ]
}

Parameters

KeyTypeDefault valueDescription

Type

String

Message

Attachments

Object Array

Any type of card in JSON

Last updated