API v2: UAG - Account Remote Applications πΒΆ
Data StructuresΒΆ
Attribute |
Type |
Required |
Description |
|---|---|---|---|
|
string |
Read-only. Unique object identifier. Expensive to use. |
|
|
string |
yes |
Read-only. Remote application name. |
|
string |
yes |
Read-only. ID of the associated account. Expensive to use. |
|
datetime |
Read-only. Timestamp of creation. |
|
|
datetime |
Read-only. Timestamp of last modification. |
|
|
boolean |
Read-only. |
Retrieve Available Attributes of the AccountRemoteAppModelΒΆ
Request
Method |
|
Path |
|
GET /api/v2/objspec/remote_app
Example Request
curl -s -k -X GET \
-H 'Authorization: sgfeea6jsaz4mum9su8w6' \
'https://10.0.214.98/api/v2/objspec/remote_app'
List Remote Applications Assigned to AccountΒΆ
Request
Method |
|
Path |
|
GET /api/v2/account/<account_id>/remote_apps
Example Request
curl -s -k -X GET \
-H 'Authorization: sgfeea6jsaz4mum9su8w6' \
https://10.0.0.1/api/v2/account/8169529724050079749/remote_apps
Response
{
"result": "success",
"remote_app": [
{
"id": "8169529724050079745",
"name": "firefox",
"account_id": "8169529724050079749",
"created_at": "2025-07-07 04:02:13.924887-07",
"modified_at": "2025-07-07 04:02:13.924887-07"
},
{
"id": "8169529724050079752",
"name": "putty-constant-variables",
"account_id": "8169529724050079749",
"created_at": "2025-07-07 04:02:14.458032-07",
"modified_at": "2025-07-07 04:02:14.458032-07"
},
{
"id": "8169529724050079754",
"name": "tightvnc",
"account_id": "8169529724050079749",
"created_at": "2025-07-07 04:02:14.52783-07",
"modified_at": "2025-07-07 04:02:14.52783-07"
}
]
}