From ef71c3c4b45302318aec207141a67073773871de Mon Sep 17 00:00:00 2001 From: Justin Bassett Date: Sat, 16 Nov 2019 06:20:24 -0500 Subject: [PATCH] mobile_app integration missing parameter (#353) --- docs/app_integration_setup.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/app_integration_setup.md b/docs/app_integration_setup.md index 61ec408d..424b482a 100644 --- a/docs/app_integration_setup.md +++ b/docs/app_integration_setup.md @@ -44,6 +44,7 @@ Example payload to send to the registration endpoint: "device_name": "Robbies iPhone", "manufacturer": "Apple, Inc.", "model": "iPhone X", + "os_name": "iOS", "os_version": "iOS 10.12", "supports_encryption": true, "app_data": { @@ -60,6 +61,7 @@ Example payload to send to the registration endpoint: | `device_name` | V | string | Name of the device running the app. | `manufacturer` | V | string | The manufacturer of the device running the app. | `model` | V | string | The model of the device running the app. +| `os_name` | V | string | The name of the OS running the app. | `os_version` | V | string | The OS version of the device running the app. | `supports_encryption` | V | bool | If the app supports encryption. See also the [encryption section](#encryption). | `app_data` | | Dict | App data can be used if the app has a supporting component that extends `mobile_app` functionality.