Add an application API key
How to automate the process of adding an application API key.
Read time 1 minuteLast updated 2 days ago
When you have enabled the Enable Remote API checkbox, you can automate the process for adding an application API key by calling the REST endpoint located at
developer-api.vivox.com/api/v1/applications/remote-api/key/add
The following code displays an example of how to add the “somenewkey” application API key by using cURL:
A response in the following format indicates that you successfully added the key:curl "https://developer-api.vivox.com/api/v1/applications/remote-api/key/add" -X POST -d"{\"remoteApiUsername\":\"remote-api-username-from-org-settings-page\",\"remoteApiPassword\":\"remote-api-password-from-org-settings-page\",\"issuer\":\"issuer-from-app-details-page\",\"key\":\"somenewkey\"}"
{"statusCode":200,"data":"some-new-key"}