POST api/Values/MarchamosCreate
Request Information
URI Parameters
None.
Body Parameters
MarcamosDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Mix | decimal number |
None. |
|
| Numero | string |
None. |
|
| ListaMarchamos | Collection of string |
None. |
|
| GestionSeguimientoId | globally unique identifier |
None. |
|
| SitioPersonaId | globally unique identifier |
None. |
|
| Usuario | decimal number |
None. |
|
| UsuarioId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"Mix": 1.0,
"Numero": "sample string 1",
"ListaMarchamos": [
"sample string 1",
"sample string 2"
],
"GestionSeguimientoId": "fd98be03-9d81-4449-a1cc-fc3ac56ca681",
"SitioPersonaId": "96d33359-905a-42aa-a7c3-573ac7e981c1",
"Usuario": 1.0,
"UsuarioId": "679ff82c-56b6-43dc-b41b-e53302a5f7ee"
}
text/xml
Sample:
<MarcamosDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<GestionSeguimientoId>fd98be03-9d81-4449-a1cc-fc3ac56ca681</GestionSeguimientoId>
<ListaMarchamos xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</ListaMarchamos>
<Mix>1</Mix>
<Numero>sample string 1</Numero>
<SitioPersonaId>96d33359-905a-42aa-a7c3-573ac7e981c1</SitioPersonaId>
<Usuario>1</Usuario>
<UsuarioId>679ff82c-56b6-43dc-b41b-e53302a5f7ee</UsuarioId>
</MarcamosDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| Message | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Message": {}
}
text/xml
Sample:
<AppResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <IsValid>true</IsValid> <Message /> </AppResult>