Skip to content

JavaScript interface to the Cisco CVP OAMP REST services and other OAMP-controlled services like the CVP diag page.

Notifications You must be signed in to change notification settings

ccondry/cvp-oamp-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CVP OAMP client

This is a JavaScript implementation of a growing collection of CVP OAMP and diagnostic portal REST APIs.

Example Usage

const cvpOampClient = require('cvp-oamp-client')
const url = 'https://cvp1.dcloud.cisco.com:9443/'
const username = 'wsmadmin'
const password = 'C1sco1234567'

// init client
let cvp = new cvpOampClient(url, username, password)

cvp.config.mediafile.list({ q: 'filename:31ord.wav AND path:en-us/sys' })
.then(response => {
  console.log(response)
})
.catch(error => {
  console.log(error)
})

About

JavaScript interface to the Cisco CVP OAMP REST services and other OAMP-controlled services like the CVP diag page.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published