POST api/Trading/NewTransazioniTitoli
Request Information
URI Parameters
None.
Body Parameters
NuovaTransazioniTitoliModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ID_CONTO | integer |
None. |
|
| ISIN | string |
None. |
|
| TITOLO | string |
None. |
|
| PAESE | string |
None. |
|
| EMITTENTE | string |
None. |
|
| TIPOLOGIA | string |
None. |
|
| TICKER | string |
None. |
|
| QUANTITA | integer |
None. |
|
| PREZZO | decimal number |
None. |
|
| DATA | date |
None. |
|
| TIPO_OPERAZIONI | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID_CONTO": 1,
"ISIN": "sample string 2",
"TITOLO": "sample string 3",
"PAESE": "sample string 4",
"EMITTENTE": "sample string 5",
"TIPOLOGIA": "sample string 6",
"TICKER": "sample string 7",
"QUANTITA": 8,
"PREZZO": 9.0,
"DATA": "2025-12-08T05:50:25.1758708+01:00",
"TIPO_OPERAZIONI": "sample string 11"
}
application/xml, text/xml
Sample:
<NuovaTransazioniTitoliModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HomeFinance.Models"> <DATA>2025-12-08T05:50:25.1758708+01:00</DATA> <EMITTENTE>sample string 5</EMITTENTE> <ID_CONTO>1</ID_CONTO> <ISIN>sample string 2</ISIN> <PAESE>sample string 4</PAESE> <PREZZO>9</PREZZO> <QUANTITA>8</QUANTITA> <TICKER>sample string 7</TICKER> <TIPOLOGIA>sample string 6</TIPOLOGIA> <TIPO_OPERAZIONI>sample string 11</TIPO_OPERAZIONI> <TITOLO>sample string 3</TITOLO> </NuovaTransazioniTitoliModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.