POST api/Sistema

Request Information

URI Parameters

None.

Body Parameters

SistemaRequest
NameDescriptionTypeAdditional information
ExternalId

integer

None.

Nombre

string

None.

Giro

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ExternalId": 1,
  "Nombre": "sample string 2",
  "Giro": "sample string 3"
}

application/xml, text/xml

Sample:
<SistemaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO">
  <ExternalId>1</ExternalId>
  <Giro>sample string 3</Giro>
  <Nombre>sample string 2</Nombre>
</SistemaRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

SistemaResponse
NameDescriptionTypeAdditional information
responseCode

integer

None.

responseMessage

string

None.

Response Formats

application/json, text/json

Sample:
{
  "responseCode": 1,
  "responseMessage": "sample string 2"
}

application/xml, text/xml

Sample:
<SistemaResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO">
  <responseCode>1</responseCode>
  <responseMessage>sample string 2</responseMessage>
</SistemaResponse>