const OneBlink = require('@oneblink/sdk') const options = { accessKey: '123455678901ABCDEFGHIJKL', secretKey: '123455678901ABCDEFGHIJKL123455678901ABCDEFGHIJKL', } const keys = new OneBlink.Keys(options) Copy
const OneBlink = require('@oneblink/sdk') const options = { accessKey: '123455678901ABCDEFGHIJKL', secretKey: '123455678901ABCDEFGHIJKL123455678901ABCDEFGHIJKL', } const keys = new OneBlink.Keys(options)
Minimum Role Permission
Calendar Bookings, Integrations & Development Keys: Read Only
The exact id of the key you wish to get
const keyId = '123455678901ABCDEFGHIJKL' keys.getKey(keyId).then((key) => { // Use key here... }) Copy
const keyId = '123455678901ABCDEFGHIJKL' keys.getKey(keyId).then((key) => { // Use key here... })
Example