FrameAppWS

<back to all web services

ProcesarPlanoIDRQ

Requires Authentication
The following routes are available for this service:
All Verbs/Utilidades/Archivos/ProcesarPlanoID
"use strict";
export class ProcesarPlanoRS {
    /** @param {{Success?:boolean,Error?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {boolean} */
    Success;
    /** @type {string} */
    Error;
}
export class ProcesarPlanoIDRQ {
    /** @param {{IDPlano?:number,IDCarga?:number,Estado?:string}} [init] */
    constructor(init) { Object.assign(this, init) }
    /** @type {number} */
    IDPlano;
    /** @type {number} */
    IDCarga;
    /** @type {string} */
    Estado;
}

JavaScript ProcesarPlanoIDRQ DTOs

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

HTTP + JSV

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

POST /Utilidades/Archivos/ProcesarPlanoID HTTP/1.1 
Host: soluser-recaudo.sgsas.co 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	IDPlano: 0,
	IDCarga: 0,
	Estado: String
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	Success: False,
	Error: String
}