handler-prepaid.js 171 Bytes
module.exports = (req, res) => {
    const { xid } = res.locals;
    res.json({
        status: 'OK',
        error: null,
        ts: new Date(),
        xid,
    });
};