POST api/Values/SelloRecepcionDocumentos

Request Information

URI Parameters

None.

Body Parameters

SelloRemisionDto
NameDescriptionTypeAdditional information
UsuarioId

globally unique identifier

None.

Fecha

date

None.

DocumentosId

Collection of decimal number

None.

Request Formats

application/json, text/json

Sample:
{
  "UsuarioId": "bd4391f3-24fe-45e3-897e-747f85719d6a",
  "Fecha": "2025-12-15T19:31:07.6545228-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>2025-12-15T19:31:07.6545228-06:00</Fecha>
  <UsuarioId>bd4391f3-24fe-45e3-897e-747f85719d6a</UsuarioId>
</SelloRemisionDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

AppResult
NameDescriptionTypeAdditional 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>