POST api/Messaggi/get_StatoLettura
Passando alla funzione l'id di un messaggio restituisce la lista di utenti a cui è stato inviato con il relativo stato di lettura
Request Information
URI Parameters
None.
Body Parameters
GetMessaggioById| Name | Description | Type | Additional information |
|---|---|---|---|
| IdMessaggio | integer |
Required |
Request Formats
application/json, text/json
Sample:
{
"IdMessaggio": 1
}
application/xml, text/xml
Sample:
<ParametriWS.GetMessaggioById xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess"> <IdMessaggio>1</IdMessaggio> </ParametriWS.GetMessaggioById>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of StatoLetturaMessaggio| Name | Description | Type | Additional information |
|---|---|---|---|
| CognomeNome | string |
None. |
|
| DataLettura | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"CognomeNome": "sample string 1",
"DataLettura": "sample string 2"
},
{
"CognomeNome": "sample string 1",
"DataLettura": "sample string 2"
}
]
application/xml, text/xml
Sample:
<ArrayOfStatoLetturaMessaggio xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess">
<StatoLetturaMessaggio>
<CognomeNome>sample string 1</CognomeNome>
<DataLettura>sample string 2</DataLettura>
</StatoLetturaMessaggio>
<StatoLetturaMessaggio>
<CognomeNome>sample string 1</CognomeNome>
<DataLettura>sample string 2</DataLettura>
</StatoLetturaMessaggio>
</ArrayOfStatoLetturaMessaggio>