POST api/Punto/AddNfc/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

string

None.

Body Parameters

InsertNfcDto
NameDescriptionTypeAdditional information
IdPunto

integer

None.

Codigo

string

None.

Nombre

string

None.

IdEstado

integer

None.

NombreEstado

string

None.

IdServicio

integer

None.

NombreServicio

string

None.

IdTipoServicio

integer

None.

NombreTipoServicio

string

None.

Informacion

string

None.

Request Formats

application/json, text/json

Sample:
{
  "IdPunto": 1,
  "Codigo": "sample string 2",
  "Nombre": "sample string 3",
  "IdEstado": 4,
  "NombreEstado": "sample string 5",
  "IdServicio": 1,
  "NombreServicio": "sample string 6",
  "IdTipoServicio": 1,
  "NombreTipoServicio": "sample string 7",
  "Informacion": "sample string 8"
}

application/xml, text/xml

Sample:
<InsertNfcDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <IdPunto>1</IdPunto>
  <Codigo>sample string 2</Codigo>
  <Nombre>sample string 3</Nombre>
  <IdEstado>4</IdEstado>
  <NombreEstado>sample string 5</NombreEstado>
  <IdServicio>1</IdServicio>
  <NombreServicio>sample string 6</NombreServicio>
  <IdTipoServicio>1</IdTipoServicio>
  <NombreTipoServicio>sample string 7</NombreTipoServicio>
  <Informacion>sample string 8</Informacion>
</InsertNfcDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json

Sample:

Sample not available.