GET api/GetPresupuestoVerificaRoturaStock?strToken={strToken}&strCodigo={strCodigo}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
strToken

string

Required

strCodigo

string

Required

Body Parameters

None.

Response Information

Resource Description

RecambioRoturaStockResult
NameDescriptionTypeAdditional information
booOk

boolean

None.

strMensaje

string

None.

miListRecambioRoturaStock

Collection of RecambioRoturaStock

None.

Response Formats

application/json, text/json

Sample:
{
  "booOk": true,
  "strMensaje": "sample string 2",
  "miListRecambioRoturaStock": [
    {
      "datFechaRegistro": "2025-12-15T22:20:55.3498577+01:00",
      "strCodigo": "sample string 2",
      "datFechaReposicion": "2025-12-15T22:20:55.3498577+01:00",
      "strRecambioNombre": "sample string 4"
    },
    {
      "datFechaRegistro": "2025-12-15T22:20:55.3498577+01:00",
      "strCodigo": "sample string 2",
      "datFechaReposicion": "2025-12-15T22:20:55.3498577+01:00",
      "strRecambioNombre": "sample string 4"
    }
  ]
}

text/xml

Sample:
<RecambioRoturaStockResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RestHaierSatWA.Models">
  <booOk>true</booOk>
  <miListRecambioRoturaStock>
    <RecambioRoturaStock>
      <datFechaRegistro>2025-12-15T22:20:55.3498577+01:00</datFechaRegistro>
      <datFechaReposicion>2025-12-15T22:20:55.3498577+01:00</datFechaReposicion>
      <strCodigo>sample string 2</strCodigo>
      <strRecambioNombre>sample string 4</strRecambioNombre>
    </RecambioRoturaStock>
    <RecambioRoturaStock>
      <datFechaRegistro>2025-12-15T22:20:55.3498577+01:00</datFechaRegistro>
      <datFechaReposicion>2025-12-15T22:20:55.3498577+01:00</datFechaReposicion>
      <strCodigo>sample string 2</strCodigo>
      <strRecambioNombre>sample string 4</strRecambioNombre>
    </RecambioRoturaStock>
  </miListRecambioRoturaStock>
  <strMensaje>sample string 2</strMensaje>
</RecambioRoturaStockResult>