Adyen · Schema

UninstallAndroidAppDetails

UninstallAndroidAppDetails schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
appId string The unique identifier of the app to be uninstalled.
type string Type of terminal action: Uninstall an Android app.
View JSON Schema on GitHub

JSON Schema

management-uninstall-android-app-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/management-uninstall-android-app-details-schema.json",
  "title": "UninstallAndroidAppDetails",
  "description": "UninstallAndroidAppDetails schema from Adyen API",
  "type": "object",
  "properties": {
    "appId": {
      "description": "The unique identifier of the app to be uninstalled.",
      "type": "string"
    },
    "type": {
      "default": "UninstallAndroidApp",
      "description": "Type of terminal action: Uninstall an Android app.",
      "enum": [
        "UninstallAndroidApp"
      ],
      "type": "string"
    }
  },
  "additionalProperties": false
}