GET
    /call/history
  
  curl \
 --request GET 'https://sandbox.serchservice.com/api/v1/call/history'
        Response examples (200)
  
  {
  "status": "100 CONTINUE",
  "code": 42,
  "message": "string",
  "data": [
    {
      "member": {
        "member": "string",
        "name": "string",
        "avatar": "string",
        "image": "string",
        "category": "string"
      },
      "recent": {
        "channel": "string",
        "label": "string",
        "duration": "string",
        "outgoing": true,
        "type": "VOICE",
        "status": "CALLING"
      },
      "history": [
        {
          "channel": "string",
          "label": "string",
          "duration": "string",
          "outgoing": true,
          "type": "VOICE",
          "status": "CALLING"
        }
      ]
    }
  ]
}