BokaMera.API.Host

<back to all web services

DibsCallbackDto

The following routes are available for this service:
POST/licenses/dibscallback/Save Dibs CallbackThis service is used for the DIBS callback.
"use strict";
/** @typedef {'Success'|'Cancelled'} */
export var DibStatus;
(function (DibStatus) {
    DibStatus["Success"] = "Success"
    DibStatus["Cancelled"] = "Cancelled"
})(DibStatus || (DibStatus = {}));
export class DibsCallbackDto {
    /** @param {{CompanyId?:string,cardexpdate?:string,transact?:string,cardnomask?:string,paytype?:string,currency?:string,acquirer?:string,approvalcode?:string,statuscode?:string,amount?:string,RedirectUrl?:string,Token?:string,Status?:DibStatus}} [init] */
    constructor(init) { Object.assign(this, init) }
    /**
     * @type {string}
     * @description The company id to save the credit card to */
    CompanyId;
    /**
     * @type {string}
     * @description The dibs card expiration date (yymm) */
    cardexpdate;
    /**
     * @type {string}
     * @description The dibs transact id */
    transact;
    /**
     * @type {string}
     * @description The dibs card number (masked) */
    cardnomask;
    /**
     * @type {string}
     * @description The dibs paytype */
    paytype;
    /**
     * @type {string}
     * @description The dibs currency */
    currency;
    /**
     * @type {string}
     * @description The dibs acquirer */
    acquirer;
    /**
     * @type {string}
     * @description The dibs approval code */
    approvalcode;
    /**
     * @type {string}
     * @description The dibs status code */
    statuscode;
    /**
     * @type {string}
     * @description The dibs amount */
    amount;
    /**
     * @type {string}
     * @description The redirect url to send user back to after added creditcard */
    RedirectUrl;
    /**
     * @type {string}
     * @description The unique token for this request */
    Token;
    /**
     * @type {DibStatus}
     * @description status of the callback url */
    Status;
}

JavaScript DibsCallbackDto 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 /licenses/dibscallback/ HTTP/1.1 
Host: testapi.bokamera.se 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"cardexpdate":"String","transact":"String","cardnomask":"String","paytype":"String","currency":"String","acquirer":"String","approvalcode":"String","statuscode":"String","amount":"String","RedirectUrl":"String","Token":"String","Status":"Success"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{}