Hierarchy

  • default
    • Keys

Constructors

Methods

Constructors

  • Parameters

    Returns Keys

    const OneBlink = require('@oneblink/sdk')
    const options = {
    accessKey: '123455678901ABCDEFGHIJKL',
    secretKey: '123455678901ABCDEFGHIJKL123455678901ABCDEFGHIJKL',
    }
    const keys = new OneBlink.Keys(options)

Methods

  • Minimum Role Permission

    Calendar Bookings, Integrations & Development Keys: Read Only

    Parameters

    • keyId: string

      The exact id of the key you wish to get

    Returns Promise<Key>

    const keyId = '123455678901ABCDEFGHIJKL'
    keys.getKey(keyId).then((key) => {
    // Use key here...
    })