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": "05e2e80d-4be9-40e8-93be-f7cd0603cd47",
"IdSoggetto": "11a448bf-0f70-4d57-9180-6feeed5304c4",
"IdUtente": "ba0436b3-8a75-45ef-bd3f-7fa07a110ecb",
"IdSoftware": "1e391880-c596-4ffa-8959-f5607be10c47",
"Titolo": "sample string 4",
"Testo": "sample string 5",
"DataCreazione": "2026-03-23T12:37:11.9076118+01:00",
"DataRichiestaNotifica": "2026-03-23T12:37:11.9076118+01:00",
"DataNotifica": "2026-03-23T12:37:11.9076118+01:00",
"Notificato": true,
"IdRiferimentoEsterno": "ed40e30e-12ea-40e6-8722-929c4e677e11",
"ImgNotifica": "QEA="
},
{
"Id": "05e2e80d-4be9-40e8-93be-f7cd0603cd47",
"IdSoggetto": "11a448bf-0f70-4d57-9180-6feeed5304c4",
"IdUtente": "ba0436b3-8a75-45ef-bd3f-7fa07a110ecb",
"IdSoftware": "1e391880-c596-4ffa-8959-f5607be10c47",
"Titolo": "sample string 4",
"Testo": "sample string 5",
"DataCreazione": "2026-03-23T12:37:11.9076118+01:00",
"DataRichiestaNotifica": "2026-03-23T12:37:11.9076118+01:00",
"DataNotifica": "2026-03-23T12:37:11.9076118+01:00",
"Notificato": true,
"IdRiferimentoEsterno": "ed40e30e-12ea-40e6-8722-929c4e677e11",
"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>2026-03-23T12:37:11.9076118+01:00</DataCreazione>
<DataNotifica>2026-03-23T12:37:11.9076118+01:00</DataNotifica>
<DataRichiestaNotifica>2026-03-23T12:37:11.9076118+01:00</DataRichiestaNotifica>
<Id>05e2e80d-4be9-40e8-93be-f7cd0603cd47</Id>
<IdRiferimentoEsterno>ed40e30e-12ea-40e6-8722-929c4e677e11</IdRiferimentoEsterno>
<IdSoftware>1e391880-c596-4ffa-8959-f5607be10c47</IdSoftware>
<IdSoggetto>11a448bf-0f70-4d57-9180-6feeed5304c4</IdSoggetto>
<IdUtente>ba0436b3-8a75-45ef-bd3f-7fa07a110ecb</IdUtente>
<ImgNotifica>QEA=</ImgNotifica>
<Notificato>true</Notificato>
<Testo>sample string 5</Testo>
<Titolo>sample string 4</Titolo>
</NotificaEntityWS>
<NotificaEntityWS>
<DataCreazione>2026-03-23T12:37:11.9076118+01:00</DataCreazione>
<DataNotifica>2026-03-23T12:37:11.9076118+01:00</DataNotifica>
<DataRichiestaNotifica>2026-03-23T12:37:11.9076118+01:00</DataRichiestaNotifica>
<Id>05e2e80d-4be9-40e8-93be-f7cd0603cd47</Id>
<IdRiferimentoEsterno>ed40e30e-12ea-40e6-8722-929c4e677e11</IdRiferimentoEsterno>
<IdSoftware>1e391880-c596-4ffa-8959-f5607be10c47</IdSoftware>
<IdSoggetto>11a448bf-0f70-4d57-9180-6feeed5304c4</IdSoggetto>
<IdUtente>ba0436b3-8a75-45ef-bd3f-7fa07a110ecb</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>