FrameAppWS

<back to all web services

AMDCReversarPagoRQ

Requires Authentication
The following routes are available for this service:
All Verbs/pago/ReversarPago
import java.math.*
import java.util.*
import net.servicestack.client.*
import com.google.gson.annotations.*
import com.google.gson.reflect.*


open class AMDCReversarPagoRQ : DatosBanco()
{
    var IdTransaccionBanco:String? = null
    var Banco:String? = null
    var Sucursal:String? = null
    var Usuario:String? = null
    var Terminal:String? = null
}

open class DatosBanco
{
    var Banco:String? = null
    var Sucursal:String? = null
    var Usuario:String? = null
    var Terminal:String? = null
}

open class AMDCReversarPagoRS : CoreRes()
{
    var PagoReversadoRespuesta:ResultadoTransaccion? = null
    var TranId:String? = null
    var Code:String? = null
    var InfoMsg:String? = null
}

open class CoreRes
{
    var TranId:String? = null
    var Code:String? = null
    var InfoMsg:String? = null
}

open class ResultadoTransaccion
{
    var Resultado:String? = null
    @DataMember(Name="Mensaje")
    @SerializedName("Mensaje")
    var MensajeResultado:String? = null

    var FechaTransaccion:String? = null
}

Kotlin AMDCReversarPagoRQ DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .other suffix or ?format=other

HTTP + OTHER

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /pago/ReversarPago HTTP/1.1 
Host: soluser-recaudo.sgsas.co 
Accept: text/jsonl
Content-Type: text/jsonl
Content-Length: length

{"IdTransaccionBanco":"String","Banco":"String","Sucursal":"String","Usuario":"String","Terminal":"String"}
HTTP/1.1 200 OK
Content-Type: text/jsonl
Content-Length: length

{"PagoReversadoRespuesta":{"Resultado":"String","Mensaje":"String","FechaTransaccion":"String"},"TranId":"String","Code":"String","InfoMsg":"String"}