API v2: UAG - Account Remote Applications πŸ†•ΒΆ


Data StructuresΒΆ

AccountRemoteAppModelΒΆ
Attribute Type Required Description
id string   Read-only. Unique object identifier. Expensive to use.
name string yes Read-only. Remote application name.
account_id string yes Read-only. ID of the associated account. Expensive to use.
created_at datetime   Read-only. Timestamp of creation.
modified_at datetime   Read-only. Timestamp of last modification.
removed boolean   Read-only.

Request for Retrieving Available Attributes of the AccountRemoteAppModelΒΆ

Request

Method GET
Path /api/v2/objspec/remote_app

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 GET
Path /api/v2/account/<account_id>/remote_apps

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"
        }
    ]
}