UNPKG

squidex-client-manager

Version:

a client for interacting with the Squidex API

16 lines (12 loc) 566 B
const { SquidexClientManager } = require('squidex-client-manager'); require('dotenv').config(); const main = async () => { const clientSecret = process.env.SQUIDEX_CLIENT_SECRET; const clientId = process.env.SQUIDEX_CLIENT_ID; const url = process.env.SQUIDEX_CONNECT_URL; const appName = process.env.APP_NAME; const client = new SquidexClientManager(url, appName, clientId, clientSecret); const records = await client.RecordAsync('Articles', { id: '4bb3a7bb-962d-4183-9ca6-35d170c34f3b' }); console.log(JSON.stringify(records, null, 2)); }; main();