UNPKG

revolut

Version:
11 lines (8 loc) 283 B
const debug = require('debug')('revolut:webhooks'); module.exports = ({ url, request }) => ({ // POST https://sandbox-b2b.revolut.com/api/1.0/webhook setup: (webhook) => { debug(`Setting up webhook: ${webhook}`); return request.post(`${url}/webhook`, webhook); } });