POST api/createcuenta

Request Information

URI Parameters

None.

Body Parameters

CuentasBancariasDto
NameDescriptionTypeAdditional information
Id

integer

None.

RfcBanco

string

None.

RazonSocialBanco

string

None.

NumeroCuenta

string

None.

Identificador

string

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "RfcBanco": "sample string 2",
  "RazonSocialBanco": "sample string 3",
  "NumeroCuenta": "sample string 4",
  "Identificador": "sample string 5"
}

application/xml, text/xml

Sample:
<CuentasBancariasDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Model.Dto">
  <Id>1</Id>
  <Identificador>sample string 5</Identificador>
  <NumeroCuenta>sample string 4</NumeroCuenta>
  <RazonSocialBanco>sample string 3</RazonSocialBanco>
  <RfcBanco>sample string 2</RfcBanco>
</CuentasBancariasDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GenericResponse
NameDescriptionTypeAdditional information
Success

boolean

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "Data": {}
}

application/xml, text/xml

Sample:
<GenericResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Helpers">
  <Data />
  <Message>sample string 2</Message>
  <Success>true</Success>
</GenericResponse>