import Riza from '@riza-io/api';
const client = new Riza({
apiKey: process.env['RIZA_API_KEY'], // This is the default and can be omitted
});
const revision = await client.runtimes.revisions.get('runtime_id', 'revision_id');
console.log(revision.id);
import Riza from '@riza-io/api';
const client = new Riza({
apiKey: process.env['RIZA_API_KEY'], // This is the default and can be omitted
});
const revision = await client.runtimes.revisions.get('runtime_id', 'revision_id');
console.log(revision.id);