POST api/notifiche/SaveNotificheToRepository
Request Information
URI Parameters
None.
Body Parameters
Collection of NotificaEntityWS| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdSoggetto | globally unique identifier |
None. |
|
| IdUtente | globally unique identifier |
None. |
|
| IdSoftware | globally unique identifier |
None. |
|
| Titolo | string |
None. |
|
| Testo | string |
None. |
|
| DataCreazione | date |
None. |
|
| DataRichiestaNotifica | date |
None. |
|
| DataNotifica | date |
None. |
|
| Notificato | boolean |
None. |
|
| IdRiferimentoEsterno | globally unique identifier |
None. |
|
| ImgNotifica | Collection of byte |
None. |
Request Formats
application/json, text/json
Sample:
[
{
"Id": "d1ffbe2e-d631-45e6-8c1b-689f4a64a8ad",
"IdSoggetto": "fb344d25-7c86-410e-bf09-bcd010e396a1",
"IdUtente": "edc06547-953e-492e-82be-5a9de814554e",
"IdSoftware": "66323994-5288-448b-9e01-9710dc3ebad5",
"Titolo": "sample string 4",
"Testo": "sample string 5",
"DataCreazione": "2025-12-06T05:44:35.0313602+01:00",
"DataRichiestaNotifica": "2025-12-06T05:44:35.0313602+01:00",
"DataNotifica": "2025-12-06T05:44:35.0313602+01:00",
"Notificato": true,
"IdRiferimentoEsterno": "9de102fd-73e3-4a11-91bd-d5129f3a6400",
"ImgNotifica": "QEA="
},
{
"Id": "d1ffbe2e-d631-45e6-8c1b-689f4a64a8ad",
"IdSoggetto": "fb344d25-7c86-410e-bf09-bcd010e396a1",
"IdUtente": "edc06547-953e-492e-82be-5a9de814554e",
"IdSoftware": "66323994-5288-448b-9e01-9710dc3ebad5",
"Titolo": "sample string 4",
"Testo": "sample string 5",
"DataCreazione": "2025-12-06T05:44:35.0313602+01:00",
"DataRichiestaNotifica": "2025-12-06T05:44:35.0313602+01:00",
"DataNotifica": "2025-12-06T05:44:35.0313602+01:00",
"Notificato": true,
"IdRiferimentoEsterno": "9de102fd-73e3-4a11-91bd-d5129f3a6400",
"ImgNotifica": "QEA="
}
]
application/xml, text/xml
Sample:
<ArrayOfNotificaEntityWS xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdlShared.WebServices.TypeDefinition">
<NotificaEntityWS>
<DataCreazione>2025-12-06T05:44:35.0313602+01:00</DataCreazione>
<DataNotifica>2025-12-06T05:44:35.0313602+01:00</DataNotifica>
<DataRichiestaNotifica>2025-12-06T05:44:35.0313602+01:00</DataRichiestaNotifica>
<Id>d1ffbe2e-d631-45e6-8c1b-689f4a64a8ad</Id>
<IdRiferimentoEsterno>9de102fd-73e3-4a11-91bd-d5129f3a6400</IdRiferimentoEsterno>
<IdSoftware>66323994-5288-448b-9e01-9710dc3ebad5</IdSoftware>
<IdSoggetto>fb344d25-7c86-410e-bf09-bcd010e396a1</IdSoggetto>
<IdUtente>edc06547-953e-492e-82be-5a9de814554e</IdUtente>
<ImgNotifica>QEA=</ImgNotifica>
<Notificato>true</Notificato>
<Testo>sample string 5</Testo>
<Titolo>sample string 4</Titolo>
</NotificaEntityWS>
<NotificaEntityWS>
<DataCreazione>2025-12-06T05:44:35.0313602+01:00</DataCreazione>
<DataNotifica>2025-12-06T05:44:35.0313602+01:00</DataNotifica>
<DataRichiestaNotifica>2025-12-06T05:44:35.0313602+01:00</DataRichiestaNotifica>
<Id>d1ffbe2e-d631-45e6-8c1b-689f4a64a8ad</Id>
<IdRiferimentoEsterno>9de102fd-73e3-4a11-91bd-d5129f3a6400</IdRiferimentoEsterno>
<IdSoftware>66323994-5288-448b-9e01-9710dc3ebad5</IdSoftware>
<IdSoggetto>fb344d25-7c86-410e-bf09-bcd010e396a1</IdSoggetto>
<IdUtente>edc06547-953e-492e-82be-5a9de814554e</IdUtente>
<ImgNotifica>QEA=</ImgNotifica>
<Notificato>true</Notificato>
<Testo>sample string 5</Testo>
<Titolo>sample string 4</Titolo>
</NotificaEntityWS>
</ArrayOfNotificaEntityWS>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ServiceResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Result | string |
None. |
|
| Errori | Collection of string |
None. |
|
| IsSuccessful | boolean |
None. |
|
| IsOnError | boolean |
None. |
|
| ErrorString | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Result": "sample string 1",
"Errori": [
"sample string 1",
"sample string 2"
],
"IsSuccessful": false,
"IsOnError": true,
"ErrorString": "sample string 1, sample string 2"
}
application/xml, text/xml
Sample:
<ServiceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdlShared.WebServices.TypeDefinition">
<Errori xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Errori>
<Result>sample string 1</Result>
</ServiceResult>