Get the list of licensed apps installed.
GET/appcenter/apps/installedLicenseApps
Get the list of licensed apps installed(requires organizational administrator permissions)
History
Version | Changes |
---|---|
v6.0.? | Added in: v6.0.? |
Responses
- 200
- 401
- 403
- 404
- 500
Request successful
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
app's id
policy
object
app's policy
Possible values: [standard
, simple
, org_scale
, full_binding
]
Only when policy=standard can app grant to user, other policies cannot grant to user
When the policy = full_binding, it means that the grant of this application is bound to the target application
license scale
The number of app licenses already in use
The result of this request.
The error code of this request.
Error message for this request.
Error meta data for this request.
{
"data": [
{
"appID": "wiki",
"policy": {
"policy": "standard",
"target": ""
},
"scale": 100,
"usage": 3
},
{
"appID": "xmind",
"policy": {
"policy": "full_binding",
"target": "wiki"
},
"edition": "enterprise",
"scale": 100,
"usage": 3
}
],
"result": "string",
"errorCode": "string",
"errorMsg": "string",
"errorData": {}
}
Returned if the authentication credentials are incorrect or missing.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Unauthorized",
"errorMsg": "Access token is invalid"
}
Returns if the scope check fails.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Forbidden",
"errorMsg": "Scope is invalid"
}
Returned if the resource object was not found.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "NotFound",
"errorMsg": "Not Found"
}
Internal Server Error.
- application/json
- Schema
- Example (from schema)
Schema
The result of this request.
The error code of this request.
Error message for this request.
{
"result": "FAIL",
"errorCode": "Internal Server Error",
"errorMsg": "Internal Server Error"
}