Next Topic

Previous Topic

Book Contents

Get Third Party App Status

Returns the status of third party apps in a tenant.

GET /thirdpartyapps/{tenantId}/status

Headers

Model Schema

Field

Datatype

Filterable

Sortable

Id

decimal

 

 

Name

string

 

 

Install Apps

 

 

AppId

int32

 

 

AppName

string

 

 

CompanyName

string

 

 

AppVersion

string

 

 

Registered

boolean

 

 

Status

appstatus

 

 

DateInstalled

datetime

 

 

Sample Response Model

{
  "TotalRecords": 1,
  "Result": {
    "Id": "22142258351669134234614323",
    "Name": "Tenant One",
    "InstalledApps": [
      {
        "AppId": 7,
        "AppName": "BasicTap",
        "CompanyName": "Kaseya",
        "AppVersion": "1.0",
        "Registered": true,
        "Status": "Enabled",
        "DateInstalled": "2017-07-13T09:17:02"
      },
      {
        "AppId": 12,
        "AppName": "BasicTap2",
        "CompanyName": "Kaseya",
        "AppVersion": "1.0",
        "Registered": true,
        "Status": "Enabled",
        "DateInstalled": "2017-07-28T10:26:54"
      }
    ]
  },
  "ResponseCode": 0,
  "Status": "OK",
  "Error": "None"
}