Payment Methods
Add Payment Method
Adds a new payment method to the workspace
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.paymentMethods.add('WORKSPACE_ID').then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});
Was this page helpful?
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.paymentMethods.add('WORKSPACE_ID').then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});