cheetah-client
v1.0.0
Published
A node client for Cheetah Digital APIs
Downloads
4
Maintainers
Readme
cheetah-client
Examples
const cheetah = new CheetahClient()
await cheetah.authenticate({
username: 'username',
password: 'password',
client_id: 5551234,
})
// Fetch a content block by its Object Ref ID
const contentBlock = await cheetah.getContentBlock(10454)
console.log(contentBlock.obj.display_name)