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": "fadd587f-7393-4fdf-9f22-07e77b08422d",
"IdSoggetto": "dba76749-28c6-4d59-91a4-aee35482736a",
"IdUtente": "7838ea11-000c-4f4d-964b-fa73aebc17b0",
"IdSoftware": "40d99dc7-abc7-47cb-b919-ab09d5e29c32",
"Titolo": "sample string 4",
"Testo": "sample string 5",
"DataCreazione": "2026-08-19T21:09:54.4278004+02:00",
"DataRichiestaNotifica": "2026-08-19T21:09:54.4278004+02:00",
"DataNotifica": "2026-08-19T21:09:54.4278004+02:00",
"Notificato": true,
"IdRiferimentoEsterno": "04491978-7b96-4cdc-b868-63e8daf76e84",
"ImgNotifica": "QEA="
},
{
"Id": "fadd587f-7393-4fdf-9f22-07e77b08422d",
"IdSoggetto": "dba76749-28c6-4d59-91a4-aee35482736a",
"IdUtente": "7838ea11-000c-4f4d-964b-fa73aebc17b0",
"IdSoftware": "40d99dc7-abc7-47cb-b919-ab09d5e29c32",
"Titolo": "sample string 4",
"Testo": "sample string 5",
"DataCreazione": "2026-08-19T21:09:54.4278004+02:00",
"DataRichiestaNotifica": "2026-08-19T21:09:54.4278004+02:00",
"DataNotifica": "2026-08-19T21:09:54.4278004+02:00",
"Notificato": true,
"IdRiferimentoEsterno": "04491978-7b96-4cdc-b868-63e8daf76e84",
"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-08-19T21:09:54.4278004+02:00</DataCreazione>
<DataNotifica>2026-08-19T21:09:54.4278004+02:00</DataNotifica>
<DataRichiestaNotifica>2026-08-19T21:09:54.4278004+02:00</DataRichiestaNotifica>
<Id>fadd587f-7393-4fdf-9f22-07e77b08422d</Id>
<IdRiferimentoEsterno>04491978-7b96-4cdc-b868-63e8daf76e84</IdRiferimentoEsterno>
<IdSoftware>40d99dc7-abc7-47cb-b919-ab09d5e29c32</IdSoftware>
<IdSoggetto>dba76749-28c6-4d59-91a4-aee35482736a</IdSoggetto>
<IdUtente>7838ea11-000c-4f4d-964b-fa73aebc17b0</IdUtente>
<ImgNotifica>QEA=</ImgNotifica>
<Notificato>true</Notificato>
<Testo>sample string 5</Testo>
<Titolo>sample string 4</Titolo>
</NotificaEntityWS>
<NotificaEntityWS>
<DataCreazione>2026-08-19T21:09:54.4278004+02:00</DataCreazione>
<DataNotifica>2026-08-19T21:09:54.4278004+02:00</DataNotifica>
<DataRichiestaNotifica>2026-08-19T21:09:54.4278004+02:00</DataRichiestaNotifica>
<Id>fadd587f-7393-4fdf-9f22-07e77b08422d</Id>
<IdRiferimentoEsterno>04491978-7b96-4cdc-b868-63e8daf76e84</IdRiferimentoEsterno>
<IdSoftware>40d99dc7-abc7-47cb-b919-ab09d5e29c32</IdSoftware>
<IdSoggetto>dba76749-28c6-4d59-91a4-aee35482736a</IdSoggetto>
<IdUtente>7838ea11-000c-4f4d-964b-fa73aebc17b0</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>