UNPKG

252 BJavaScriptView Raw
1'use strict';
2
3var capiV2 = require('./utils/capi-v2');
4
5module.exports = function(opts) {
6 var uuid = opts.uuid;
7 var retry = opts.retry;
8 return capiV2({
9 uuid: uuid,
10 path: '/organisations/' + uuid,
11 type: 'Organisations',
12 retry: retry
13 });
14};