POST api/ValorConcepto_Bulk

Request Information

URI Parameters

None.

Body Parameters

Collection of ValorConceptoRequest
NameDescriptionTypeAdditional information
nombreValorConcepto

string

None.

valor

decimal number

None.

idExterno

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "nombreValorConcepto": "sample string 1",
    "valor": 2.0,
    "idExterno": "sample string 3"
  },
  {
    "nombreValorConcepto": "sample string 1",
    "valor": 2.0,
    "idExterno": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfValorConceptoRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO">
  <ValorConceptoRequest>
    <idExterno>sample string 3</idExterno>
    <nombreValorConcepto>sample string 1</nombreValorConcepto>
    <valor>2</valor>
  </ValorConceptoRequest>
  <ValorConceptoRequest>
    <idExterno>sample string 3</idExterno>
    <nombreValorConcepto>sample string 1</nombreValorConcepto>
    <valor>2</valor>
  </ValorConceptoRequest>
</ArrayOfValorConceptoRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ValorConceptoResponse
NameDescriptionTypeAdditional information
responseCode

integer

None.

responseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "responseCode": 1,
  "responseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<ValorConceptoResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO">
  <responseCode>1</responseCode>
  <responseMessage>sample string 2</responseMessage>
</ValorConceptoResponse>