POST api/movimenti/sospesi/risolvi
Request Information
URI Parameters
None.
Body Parameters
RisolviSospesoRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| IdSospeso | integer |
None. |
|
| Azione | string |
None. |
|
| Operatore | string |
None. |
|
| Note | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdSospeso": 1,
"Azione": "sample string 2",
"Operatore": "sample string 3",
"Note": "sample string 4"
}
application/xml, text/xml
Sample:
<RisolviSospesoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PagoPaApi.ViewModel"> <Azione>sample string 2</Azione> <IdSospeso>1</IdSospeso> <Note>sample string 4</Note> <Operatore>sample string 3</Operatore> </RisolviSospesoRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RisolviSospesoResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Ok | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| IdSospeso | integer |
None. |
|
| StatoFinale | string |
None. |
|
| MovimentiImportati | integer |
None. |
|
| MovimentiEliminati | integer |
None. |
|
| Note | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Ok": true,
"ErrorMessage": "sample string 2",
"IdSospeso": 3,
"StatoFinale": "sample string 4",
"MovimentiImportati": 5,
"MovimentiEliminati": 6,
"Note": "sample string 7"
}
application/xml, text/xml
Sample:
<RisolviSospesoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PagoPaApi.ViewModel"> <ErrorMessage>sample string 2</ErrorMessage> <IdSospeso>3</IdSospeso> <MovimentiEliminati>6</MovimentiEliminati> <MovimentiImportati>5</MovimentiImportati> <Note>sample string 7</Note> <Ok>true</Ok> <StatoFinale>sample string 4</StatoFinale> </RisolviSospesoResponse>