채팅방 생성

HTTP request

POST /chatroom HTTP/1.1
Content-Type: application/json;charset=UTF-8
Authorization: "access token"
Accept: application/json
Content-Length: 40
Host: localhost:8080

{
  "saleNo" : 1,
  "createMember" : 3
}

HTTP response

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Content-Length: 20

{
  "status" : 200
}

Response fields

Path Type Description

status

Number

status

채팅 알람 전송

HTTP request

POST /chatroom/notification HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Content-Length: 214
Host: localhost:8080

{
  "id" : null,
  "chatNo" : 1,
  "contentType" : "text",
  "content" : "Hello! World!",
  "senderName" : null,
  "senderNo" : null,
  "saleNo" : 2,
  "sendTime" : 0,
  "readCount" : null,
  "senderEmail" : null
}

HTTP response

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Content-Length: 258

{
  "id" : "fas2-dfad-2dsf-dsfa",
  "chatNo" : 1,
  "contentType" : "text",
  "content" : "Hello! World!",
  "senderName" : "dev@Dev.com",
  "senderNo" : 1,
  "saleNo" : 2,
  "sendTime" : 1687162902358,
  "readCount" : 0,
  "senderEmail" : "rexDev@Dev.com"
}

접속 끊기

HTTP request

POST /chatroom/3 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Host: localhost:8080

email=dev%40Dev.com

HTTP response

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Content-Length: 20

{
  "status" : 200
}

Response fields

Path Type Description

status

Number

status

채팅방 리스트 조회

HTTP request

GET /chatroom HTTP/1.1
Content-Type: application/json;charset=UTF-8
Authorization: "access token"
Host: localhost:8080

HTTP response

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Content-Length: 717

[ {
  "chatNo" : 1,
  "createMember" : 3,
  "joinMember" : 4,
  "saleNo" : 12,
  "saleTitle" : "강아지 분양 받아요",
  "regDate" : 1687162902372,
  "participant" : {
    "username" : "user2",
    "profile" : "/image2"
  },
  "latestMessage" : {
    "context" : "안녕하세요 오랜만이네요:)",
    "sendAt" : 1687162902372
  },
  "unReadCount" : 10
}, {
  "chatNo" : 2,
  "createMember" : 5,
  "joinMember" : 23,
  "saleNo" : 43,
  "saleTitle" : "드래곤 분양 받아요",
  "regDate" : 1687162902372,
  "participant" : {
    "username" : "user3",
    "profile" : "/image3"
  },
  "latestMessage" : {
    "context" : "오랜만이네요:)",
    "sendAt" : 1687162902372
  },
  "unReadCount" : 30
} ]

채팅 리스트 조회

HTTP request

GET /chatroom/1 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Authorization: "access token"
Host: localhost:8080

HTTP response

HTTP/1.1 200 OK
Content-Type: application/json;charset=UTF-8
Content-Length: 753

{
  "email" : "rexDev@Dev.com",
  "chatList" : [ {
    "id" : "iderf-23fd-dfasdf",
    "chatRoomNo" : 2,
    "senderNo" : 3,
    "senderName" : "rexdev",
    "contentType" : "image",
    "content" : "/image2",
    "sendDate" : 1687162902338,
    "readCount" : 1,
    "mine" : true
  }, {
    "id" : "adsf-23fd-dfasdff",
    "chatRoomNo" : 8,
    "senderNo" : 1,
    "senderName" : "dev1",
    "contentType" : "text",
    "content" : "hello!",
    "sendDate" : 1687162902338,
    "readCount" : 0,
    "mine" : true
  }, {
    "id" : "aasdf-23fd-adsf2",
    "chatRoomNo" : 9,
    "senderNo" : 4,
    "senderName" : "pro1",
    "contentType" : "text",
    "content" : "good!",
    "sendDate" : 1687162902338,
    "readCount" : 1,
    "mine" : false
  } ]
}