POST api/OuterGateAgencyService/UpdatePlafond

Ricarica il plafond dell'agenzia con possibilità di impostare automaticamente il plafond uguale al saldo

Request Information

URI Parameters

None.

Body Parameters

The model in.

OuterPlafondModelIn
NameDescriptionTypeAdditional information
Plafond

Ammontare della ricarica

decimal number

None.

IsPlafondEqualBalance

Indica se il plafond deve avere l'ammontare del saldo disponibile

boolean

None.

CreatedByIpAddress

Indirizzo IP di chi sta effettuando la richiesta

string

Required

Matching regular expression pattern: \b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b

Request Formats

application/json, text/json

Sample:
{
  "Plafond": 1.0,
  "IsPlafondEqualBalance": true,
  "CreatedByIpAddress": "sample string 3"
}

application/xml, text/xml

Sample:
<OuterPlafondModelIn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/tocode.Sepafin.Api.OuterModels">
  <CreatedByIpAddress>sample string 3</CreatedByIpAddress>
  <IsPlafondEqualBalance>true</IsPlafondEqualBalance>
  <Plafond>1</Plafond>
</OuterPlafondModelIn>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>