regis

<back to all web services

BeanstreamInteracPaymentCompletionRequest

Requires Authentication
Required role:REGISUserRole
The following routes are available for this service:
POST/Beanstream/Payment/Interac/Complete

export class BeanstreamInteracCompletionResponse
{
    public approved: number;
    public message: string;

    public constructor(init?: Partial<BeanstreamInteracCompletionResponse>) { (Object as any).assign(this, init); }
}

export class BeanstreamInteracPaymentCompletionRequest
{
    public payment_method: string;
    public funded: number;
    public idebit_merchantdata: string;
    public idebit_track2: string;
    public idebit_isslang: string;
    public idebit_version: number;
    public idebit_issconf: string;
    public idebit_issname: string;
    public idebit_amount: number;
    public idebit_invoice: string;

    public constructor(init?: Partial<BeanstreamInteracPaymentCompletionRequest>) { (Object as any).assign(this, init); }
}

TypeScript BeanstreamInteracPaymentCompletionRequest DTOs

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

To embed the response in a jsonp callback, append ?callback=myCallback

HTTP + JSON

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

POST /Beanstream/Payment/Interac/Complete HTTP/1.1 
Host: data.regent-college.edu 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"payment_method":"String","funded":0,"idebit_merchantdata":"String","idebit_track2":"String","idebit_isslang":"String","idebit_version":0,"idebit_issconf":"String","idebit_issname":"String","idebit_amount":0,"idebit_invoice":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"approved":0,"message":"String"}