GET api/NewChatHeads

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of NewChatHedsModel
NameDescriptionTypeAdditional information
USER_ID

integer

None.

USER_ROLE

string

None.

FNAME

string

None.

MNAME

string

None.

LNAME

string

None.

IMAGE_URL

string

None.

MOBILE_NUMBER

string

None.

EMAIL_ID

string

None.

NEWMESSAGES

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "USER_ID": 1,
    "USER_ROLE": "sample string 2",
    "FNAME": "sample string 3",
    "MNAME": "sample string 4",
    "LNAME": "sample string 5",
    "IMAGE_URL": "sample string 6",
    "MOBILE_NUMBER": "sample string 7",
    "EMAIL_ID": "sample string 8",
    "NEWMESSAGES": 9
  },
  {
    "USER_ID": 1,
    "USER_ROLE": "sample string 2",
    "FNAME": "sample string 3",
    "MNAME": "sample string 4",
    "LNAME": "sample string 5",
    "IMAGE_URL": "sample string 6",
    "MOBILE_NUMBER": "sample string 7",
    "EMAIL_ID": "sample string 8",
    "NEWMESSAGES": 9
  }
]

application/xml, text/xml

Sample:
<ArrayOfNewChatHedsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/School.Models.Chat">
  <NewChatHedsModel>
    <EMAIL_ID>sample string 8</EMAIL_ID>
    <FNAME>sample string 3</FNAME>
    <IMAGE_URL>sample string 6</IMAGE_URL>
    <LNAME>sample string 5</LNAME>
    <MNAME>sample string 4</MNAME>
    <MOBILE_NUMBER>sample string 7</MOBILE_NUMBER>
    <NEWMESSAGES>9</NEWMESSAGES>
    <USER_ID>1</USER_ID>
    <USER_ROLE>sample string 2</USER_ROLE>
  </NewChatHedsModel>
  <NewChatHedsModel>
    <EMAIL_ID>sample string 8</EMAIL_ID>
    <FNAME>sample string 3</FNAME>
    <IMAGE_URL>sample string 6</IMAGE_URL>
    <LNAME>sample string 5</LNAME>
    <MNAME>sample string 4</MNAME>
    <MOBILE_NUMBER>sample string 7</MOBILE_NUMBER>
    <NEWMESSAGES>9</NEWMESSAGES>
    <USER_ID>1</USER_ID>
    <USER_ROLE>sample string 2</USER_ROLE>
  </NewChatHedsModel>
</ArrayOfNewChatHedsModel>