POST api/MonitoreosSellos/DownloadMonitorinsN

Ingresa un Monitoreo que viene desde un Disposutivo Móvil

Request Information

URI Parameters

None.

Body Parameters

Objeto que posee toda la información del Monitoreo

MonitoreoR
NameDescriptionTypeAdditional information
ID

integer

None.

ID_ETIQUETA

integer

None.

S_PLACA

string

None.

FOTO1

Collection of byte

None.

FOTO2

Collection of byte

None.

FOTO3

Collection of byte

None.

S_ESTADO

string

None.

S_USUARIO

string

None.

S_JSON

string

None.

S_IMAGEN_ESTADO

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "ID_ETIQUETA": 2,
  "S_PLACA": "sample string 3",
  "FOTO1": "QEA=",
  "FOTO2": "QEA=",
  "FOTO3": "QEA=",
  "S_ESTADO": "sample string 4",
  "S_USUARIO": "sample string 5",
  "S_JSON": "sample string 6",
  "S_IMAGEN_ESTADO": null
}

application/xml, text/xml

Sample:
<MonitoreoR xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIMAPI.Models">
  <FOTO1>QEA=</FOTO1>
  <FOTO2>QEA=</FOTO2>
  <FOTO3>QEA=</FOTO3>
  <ID>1</ID>
  <ID_ETIQUETA>2</ID_ETIQUETA>
  <S_ESTADO>sample string 4</S_ESTADO>
  <S_IMAGEN_ESTADO i:nil="true" />
  <S_JSON>sample string 6</S_JSON>
  <S_PLACA>sample string 3</S_PLACA>
  <S_USUARIO>sample string 5</S_USUARIO>
</MonitoreoR>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'MonitoreoR'.

Response Information

Resource Description

RtaTransaccion
NameDescriptionTypeAdditional information
Id

Identifica el Id

integer

None.

IngresoExitoso

Indica si el proceso fue satisfactorio o no

boolean

None.

MensajeError

Mensaje de error si el proceso no fue satisfactorio

string

None.

MensajeExito

Mensaje en caso de que el ingreso fue exitoso

string

None.

Exist

El registro ya exite

boolean

None.

IdExist

Id del registro ya existente

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "IngresoExitoso": true,
  "MensajeError": "sample string 3",
  "MensajeExito": "sample string 4",
  "Exist": true,
  "IdExist": 6
}

application/xml, text/xml

Sample:
<RtaTransaccion xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SIMAPI.Models.FtesMovOperativos">
  <Exist>true</Exist>
  <Id>1</Id>
  <IdExist>6</IdExist>
  <IngresoExitoso>true</IngresoExitoso>
  <MensajeError>sample string 3</MensajeError>
  <MensajeExito>sample string 4</MensajeExito>
</RtaTransaccion>