GET api/aranceles/valores?id={id}&busqueda={busqueda}

Obtiene los valores de los aranceles según el criterio de búsqueda.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

El id del arancel

string

Required

busqueda

El criterio de búsqueda (parte de nombre o del id del examen)

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of ArancelesValoresModels
NameDescriptionTypeAdditional information
IdArancel

El id del arancel.

string

None.

IdExamen

El id del examen.

string

None.

NombreExamen

El nombre del examen arancel.

string

None.

BeneficioNivel1

El beneficio del nivel 1.

decimal number

None.

TotalNivel1

El total del nivel 1.

decimal number

None.

BeneficioNivel2

El beneficio del nivel 2.

decimal number

None.

TotalNivel2

El total del nivel 2.

decimal number

None.

BeneficioNivel3

El beneficio del nivel 3.

decimal number

None.

TotalNivel3

El total del nivel 3.

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "IdArancel": "sample string 1",
    "IdExamen": "sample string 2",
    "NombreExamen": "sample string 3",
    "BeneficioNivel1": 4.1,
    "TotalNivel1": 5.1,
    "BeneficioNivel2": 6.1,
    "TotalNivel2": 7.1,
    "BeneficioNivel3": 8.1,
    "TotalNivel3": 9.1
  },
  {
    "IdArancel": "sample string 1",
    "IdExamen": "sample string 2",
    "NombreExamen": "sample string 3",
    "BeneficioNivel1": 4.1,
    "TotalNivel1": 5.1,
    "BeneficioNivel2": 6.1,
    "TotalNivel2": 7.1,
    "BeneficioNivel3": 8.1,
    "TotalNivel3": 9.1
  }
]

application/xml, text/xml

Sample:
<ArrayOfArancelesValoresModels xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Biolabs.Models">
  <ArancelesValoresModels>
    <BeneficioNivel1>4.1</BeneficioNivel1>
    <BeneficioNivel2>6.1</BeneficioNivel2>
    <BeneficioNivel3>8.1</BeneficioNivel3>
    <IdArancel>sample string 1</IdArancel>
    <IdExamen>sample string 2</IdExamen>
    <NombreExamen>sample string 3</NombreExamen>
    <TotalNivel1>5.1</TotalNivel1>
    <TotalNivel2>7.1</TotalNivel2>
    <TotalNivel3>9.1</TotalNivel3>
  </ArancelesValoresModels>
  <ArancelesValoresModels>
    <BeneficioNivel1>4.1</BeneficioNivel1>
    <BeneficioNivel2>6.1</BeneficioNivel2>
    <BeneficioNivel3>8.1</BeneficioNivel3>
    <IdArancel>sample string 1</IdArancel>
    <IdExamen>sample string 2</IdExamen>
    <NombreExamen>sample string 3</NombreExamen>
    <TotalNivel1>5.1</TotalNivel1>
    <TotalNivel2>7.1</TotalNivel2>
    <TotalNivel3>9.1</TotalNivel3>
  </ArancelesValoresModels>
</ArrayOfArancelesValoresModels>