Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 506 Bytes

apps.md

File metadata and controls

38 lines (28 loc) · 506 Bytes

Apps

Client-side apps on the dashboard.

Retrieve settings

GET /api/v1/apps/{app_key}/settings

Response body

{
  "_id": "5a2fafb31aaff82bc574b4ad",
  "key": "{app_key}",
  "property-1": "String data",
  "property-2": "String data"
}

Update settings

PUT /api/v1/apps/{app_key}/settings

Request body

{
  "property-1": "String data",
  "property-2": "String data"
}