04-17-2026
06:07 AM
- last edited on
04-17-2026
06:20 AM
by
Obulesu
Hello!
Where can I find documentation for this API:
https://<oamp-server>:9443/oamp/api/v1/
For example, here it is
# Отримати статистику кампанії 1001 curl -X GET \ "https://ucce-oamp.internal:9443/oamp/api/v1/campaigns/1001/statistics" \ -H "Authorization: Basic $(echo -n 'admin:password' | base64)" \ -H "Accept: application/json" \ --cacert /path/to/ca-bundle.crt \ --connect-timeout 5 \ --max-time 10
Thank you
Solved! Go to Solution.
04-17-2026 08:50 AM - edited 04-17-2026 08:51 AM
Which OAMP (CVP, CUIC, etc.) and which version are you looking for?
It might make sense to move this to the contact center forum as well, if that's what you're looking for.
04-24-2026 08:44 AM
Hello, unfortunately this is not what I need, I have already found the necessary documentation for Cisco.
04-17-2026 08:50 AM - edited 04-17-2026 08:51 AM
Which OAMP (CVP, CUIC, etc.) and which version are you looking for?
It might make sense to move this to the contact center forum as well, if that's what you're looking for.
04-24-2026 08:44 AM
Hello, unfortunately this is not what I need, I have already found the necessary documentation for Cisco.
04-24-2026 11:03 AM
The OAMP API is basically part of Cisco CVP’s Operations, Administration, Maintenance, and Provisioning (OAMP) system. It’s not a separate product—it’s a REST API layer exposed by the OAMP server.
In simple terms, it allows you to programmatically manage and configure CVP resources instead of doing everything from the GUI. These APIs run on the OAMP server (via the Web Services Manager) and use standard HTTP methods like GET, POST, PUT, and DELETE over HTTPS.
You can use it for things like:
Authentication is typically done using basic auth tied to OAMP user roles, so only authorized admin users can access it.
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide