POST api/Asistencia
Request Information
URI Parameters
None.
Body Parameters
AsistenciaModel| Name | Description | Type | Additional information |
|---|---|---|---|
| CodigoCliente | integer |
None. |
|
| CICliente | string |
None. |
|
| Fecha | date |
None. |
|
| HoraEntrada | date |
None. |
|
| Observaciones | string |
None. |
|
| Sucursal | integer |
None. |
|
| Usuario | integer |
None. |
|
| NombreUsuario | string |
None. |
|
| FechaMod | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"CodigoCliente": 1,
"CICliente": "sample string 2",
"Fecha": "2025-12-13T14:53:47.2071797-08:00",
"HoraEntrada": "2025-12-13T14:53:47.2071797-08:00",
"Observaciones": "sample string 5",
"Sucursal": 6,
"Usuario": 7,
"NombreUsuario": "sample string 8",
"FechaMod": "2025-12-13T14:53:47.2071797-08:00"
}
application/xml, text/xml
Sample:
<AsistenciaModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProcessWebApi.Models.EntityModels"> <CICliente>sample string 2</CICliente> <CodigoCliente>1</CodigoCliente> <Fecha>2025-12-13T14:53:47.2071797-08:00</Fecha> <FechaMod>2025-12-13T14:53:47.2071797-08:00</FechaMod> <HoraEntrada>2025-12-13T14:53:47.2071797-08:00</HoraEntrada> <NombreUsuario>sample string 8</NombreUsuario> <Observaciones>sample string 5</Observaciones> <Sucursal>6</Sucursal> <Usuario>7</Usuario> </AsistenciaModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AsistenciaResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| MessageError | string |
None. |
|
| Success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"MessageError": "sample string 1",
"Success": true
}
application/xml, text/xml
Sample:
<AsistenciaResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProcessWebApi.Models.ResponseModels"> <MessageError>sample string 1</MessageError> <Success>true</Success> </AsistenciaResponseModel>