Skip to main content

App Store

The App Store API allows you to manage applications and integrations available for your Audian account.

Base URL​

https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/apps_store

Overview​

The App Store provides access to various applications and integrations that extend the functionality of your phone system. Use these endpoints to browse, install, configure, and manage applications.

Endpoints​

MethodEndpointDescription
GET/apps_storeList available applications
GET/apps_store/{APP_ID}Get application details
PUT/apps_store/{APP_ID}Install an application
POST/apps_store/{APP_ID}Update application settings
DELETE/apps_store/{APP_ID}Uninstall an application

List Applications​

curl -X GET "https://api.audian.com:8443/v2/accounts/{ACCOUNT_ID}/apps_store" \
-H "X-Auth-Token: {AUTH_TOKEN}" \
-H "Accept: application/json"

Response​

{
"auth_token": "{AUTH_TOKEN}",
"data": [],
"request_id": "{REQUEST_ID}",
"status": "success"
}
Documentation In Progress

This documentation is being expanded. Check back soon for complete API reference.