REST APIs in MyApp

REST APIs in MyApps

MyApps Context APIs and Access Journey SDK provide you all the Context info that allows you to personalize and localize the content and the experience.

However, you might need additional flexibility of using all the endpoints of the Cloud4Wi REST APIs. Instead of hardcoding the API Key and Secret in your app, you can retrieve a new set of API credentials directly usign the sessionkey and the App Secret associated with your app.

The API endpoint is:

https://volare.cloud4wi.com/controlpanel/1.0/bridge/sessions/{SESSION_KEY}/{App_Secret}

Response on success

{
  "status":"success",
  "data":{
    "key":"MYAPPS_5b9cc0fa3bb2_444251015466",
    "secret":"f3f4232dd24f0a7ad30c677c9ad4e04d"
  }
}

Response on error

{
  "status":"error",
  "code":404,"message":"Session token not found"
}

Workflow

Last updated