POST api/CuadrillaAPI/ImportarExcel?idCuadrilla={idCuadrilla}&idCampana={idCampana}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idCuadrilla

globally unique identifier

Required

idCampana

globally unique identifier

Required

Body Parameters

Collection of CuadrillaPersonalExcel
NameDescriptionTypeAdditional information
Nombre

string

None.

Apellido

string

None.

Cuil

string

None.

Legajo

string

None.

FechaDeIngreso

string

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "Nombre": "sample string 1",
    "Apellido": "sample string 2",
    "Cuil": "sample string 3",
    "Legajo": "sample string 4",
    "FechaDeIngreso": "sample string 5"
  },
  {
    "Nombre": "sample string 1",
    "Apellido": "sample string 2",
    "Cuil": "sample string 3",
    "Legajo": "sample string 4",
    "FechaDeIngreso": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCuadrillaPersonalExcel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entities">
  <CuadrillaPersonalExcel>
    <Apellido>sample string 2</Apellido>
    <Cuil>sample string 3</Cuil>
    <FechaDeIngreso>sample string 5</FechaDeIngreso>
    <Legajo>sample string 4</Legajo>
    <Nombre>sample string 1</Nombre>
  </CuadrillaPersonalExcel>
  <CuadrillaPersonalExcel>
    <Apellido>sample string 2</Apellido>
    <Cuil>sample string 3</Cuil>
    <FechaDeIngreso>sample string 5</FechaDeIngreso>
    <Legajo>sample string 4</Legajo>
    <Nombre>sample string 1</Nombre>
  </CuadrillaPersonalExcel>
</ArrayOfCuadrillaPersonalExcel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.