POST api/Boveda
Request Information
URI Parameters
None.
Body Parameters
BovedaRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| CuentaID | integer |
None. |
|
| nombreBoveda | string |
None. |
|
| idExterno | integer |
None. |
|
| SucursalID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"CuentaID": 1,
"nombreBoveda": "sample string 2",
"idExterno": 3,
"SucursalID": 4
}
application/xml, text/xml
Sample:
<BovedaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.IO"> <CuentaId>1</CuentaId> <IdExterno>3</IdExterno> <Nombre>sample string 2</Nombre> <SucursalId>4</SucursalId> </BovedaRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
BovedaResponse| Name | Description | Type | Additional 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:
<BovedaResponse 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> </BovedaResponse>