GET api/SeccionBodega/{id}

Obtiene la lista de las secciones correspondientes a las bodegas.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

SeccionDeBodega
NameDescriptionTypeAdditional information
ID

integer

None.

CONCEPTO

string

None.

ID_BODEGA

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "CONCEPTO": "sample string 2",
  "ID_BODEGA": 1
}

text/html

Sample:
{"ID":1,"CONCEPTO":"sample string 2","ID_BODEGA":1}

application/xml, text/xml

Sample:
<SeccionDeBodega xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APIavisoEntrada.Models">
  <CONCEPTO>sample string 2</CONCEPTO>
  <ID>1</ID>
  <ID_BODEGA>1</ID_BODEGA>
</SeccionDeBodega>