cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
411
Views
0
Helpful
3
Replies

oamp API

VitaliyAnd
Community Member

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 

2 Accepted Solutions

Accepted Solutions

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.

View solution in original post

VitaliyAnd
Community Member

Hello, unfortunately this is not what I need, I have already found the necessary documentation for Cisco.

View solution in original post

3 Replies 3

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.

VitaliyAnd
Community Member

Hello, unfortunately this is not what I need, I have already found the necessary documentation for Cisco.

jameh0266
Community Member

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:

  • Managing VXML apps and media files
  • Listing and configuring CVP servers
  • Handling system configurations (SNMP, syslog, etc.)

Authentication is typically done using basic auth tied to OAMP user roles, so only authorized admin users can access it.