GET CitasApi/Empleado/ByLocal/{idLocal}

Obtenemos Lista de Empleados pertenecientes a un Local

Request Information

URI Parameters

NameDescriptionTypeAdditional information
idLocal

Identificador del local

integer

Required

Body Parameters

None.

Response Information

Resource Description

Lista de Empleado

Collection of BusquedaDto
NameDescriptionTypeAdditional information
Id

integer

None.

IdLocal

integer

None.

Nombre

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "$id": "2",
    "Id": 1,
    "IdLocal": 2,
    "Nombre": "sample string 3"
  },
  {
    "$ref": "2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfBusquedaDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" z:Id="1" z:Size="2" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" xmlns="http://schemas.datacontract.org/2004/07/Sofycom.Sofygest.Service.Application.Models.Dtos.Comunes">
  <BusquedaDto z:Id="2">
    <Id>1</Id>
    <IdLocal>2</IdLocal>
    <Nombre z:Id="3">sample string 3</Nombre>
  </BusquedaDto>
  <BusquedaDto z:Ref="2" i:nil="true" />
</ArrayOfBusquedaDto>