RollingPaperTeam / rolling-papaer-web

Apache License 2.0
1 stars 1 forks source link

getRecipient 및 getRecipientMessages getRecipientReactions API 구현 #91

Closed nakyoung98 closed 8 months ago

nakyoung98 commented 8 months ago

getRecipient

{
  "id": 0,
  "team": "string",
  "name": "string",
  "backgroundColor": "beige",
  "backgroundImageURL": "string",
  "createdAt": "2023-12-21T09:19:40.754Z",
  "messageCount": "string",
  "recentMessages": "string",
  "reactionCount": 0,
  "topReactions": "string"
}

getRecipientMessages

{
  "count": 0,
  "next": "string",
  "previous": "string",
  "results": [
    {
      "id": 0,
      "recipientId": 0,
      "sender": "string",
      "profileImageURL": "string",
      "relationship": "친구",
      "content": "string",
      "font": "Noto Sans",
      "createdAt": "2023-12-21T09:20:37.058Z"
    }
  ]
}

getRecipientReactions

{
  "count": 0,
  "next": "string",
  "previous": "string",
  "results": [
    {
      "id": 0,
      "emoji": "string",
      "count": 2147483647
    }
  ]
}