POST api/Dispersion

Request Information

URI Parameters

None.

Body Parameters

DispersionRequest
NameDescriptionTypeAdditional information
creditoId

integer

None.

descripcion

string

None.

sociaId

integer

None.

capital

decimal number

None.

sucursalId

integer

None.

usuarioId

integer

None.

estatusCreditoId

integer

None.

clienteId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "creditoId": 1,
  "descripcion": "sample string 2",
  "sociaId": 3,
  "capital": 4.0,
  "sucursalId": 5,
  "usuarioId": 6,
  "estatusCreditoId": 7,
  "clienteId": 8
}

application/xml, text/xml

Sample:
<DispersionRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.Models">
  <capital>4</capital>
  <clienteId>8</clienteId>
  <creditoId>1</creditoId>
  <descripcion>sample string 2</descripcion>
  <estatusCreditoId>7</estatusCreditoId>
  <sociaId>3</sociaId>
  <sucursalId>5</sucursalId>
  <usuarioId>6</usuarioId>
</DispersionRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

DispersionResponse
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:
<DispersionResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ST_Catalogos.Models">
  <responseCode>1</responseCode>
  <responseMessage>sample string 2</responseMessage>
</DispersionResponse>