Payment Methods
Get Payment Method
Get workspace payment method
const { setToken, Workspaces } = require('@evecloud/sdk');
setToken('TOKEN');
Workspaces.paymentMethods.get('WORKSPACE_ID', 'PAYMENT_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.get('WORKSPACE_ID', 'PAYMENT_ID').then(data => {
console.log(data);
}).catch((error) => {
console.log(error);
});