POST api/Values/GetInfromacionDocumentoById
Request Information
URI Parameters
None.
Body Parameters
SelloRemisionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| UsuarioId | globally unique identifier |
None. |
|
| Fecha | date |
None. |
|
| DocumentosId | Collection of decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"UsuarioId": "2ef86009-0944-4d2d-b4a9-bbb33bbbb7d3",
"Fecha": "2026-08-15T05:26:04.9908513-06:00",
"DocumentosId": [
1.0,
2.0
]
}
text/xml
Sample:
<SelloRemisionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<DocumentosId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:decimal>1</d2p1:decimal>
<d2p1:decimal>2</d2p1:decimal>
</DocumentosId>
<Fecha>2026-08-15T05:26:04.9908513-06:00</Fecha>
<UsuarioId>2ef86009-0944-4d2d-b4a9-bbb33bbbb7d3</UsuarioId>
</SelloRemisionDto>
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>