POST api/TipoCliente?codtipocliente={codtipocliente}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| codtipocliente | integer |
Required |
Body Parameters
TipoClienteModel| Name | Description | Type | Additional information |
|---|---|---|---|
| codtipocliente | integer |
None. |
|
| descripcion | string |
None. |
|
| tipo | integer |
None. |
|
| noitbi | boolean |
None. |
|
| inactivo | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"codtipocliente": 1,
"descripcion": "sample string 2",
"tipo": 3,
"noitbi": true,
"inactivo": true
}
application/xml, text/xml
Sample:
<TipoClienteModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiMobileInfoplus.Models"> <codtipocliente>1</codtipocliente> <descripcion>sample string 2</descripcion> <inactivo>true</inactivo> <noitbi>true</noitbi> <tipo>3</tipo> </TipoClienteModel>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
JsonResultOfResponseModelOfTipoClienteModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Content | ResponseModelOfTipoClienteModel |
None. |
|
| SerializerSettings | JsonSerializerSettings |
None. |
|
| Encoding | Encoding |
None. |
|
| Request | HttpRequestMessage |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.