POST api/Messaggi/get_DettaglioMessaggio

Request Information

URI Parameters

None.

Body Parameters

GetMessaggioById
NameDescriptionTypeAdditional 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

Messaggio
NameDescriptionTypeAdditional information
Id

integer

None.

CognomeNomeMittente

string

None.

UserIdMittente

string

None.

Oggetto

string

None.

Corpo

string

None.

DataInvio

string

None.

MeseAnnoInvio

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CognomeNomeMittente": "sample string 2",
  "UserIdMittente": "sample string 3",
  "Oggetto": "sample string 4",
  "Corpo": "sample string 5",
  "DataInvio": "sample string 6",
  "MeseAnnoInvio": "sample string 7"
}

application/xml, text/xml

Sample:
<Messaggio xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess">
  <CognomeNomeMittente>sample string 2</CognomeNomeMittente>
  <Corpo>sample string 5</Corpo>
  <DataInvio>sample string 6</DataInvio>
  <Id>1</Id>
  <MeseAnnoInvio>sample string 7</MeseAnnoInvio>
  <Oggetto>sample string 4</Oggetto>
  <UserIdMittente>sample string 3</UserIdMittente>
</Messaggio>