PTC View Management Domain
The PTC View Management (ViewMgmt) domain provides access to the view administration capabilities of Windchill. The domain contains the View OData entity that represents the view object in Windchill and provides the views entity set that enables clients to read the views available in the Windchill system.
 
The Views entity set is read-only and does not support create, update, and delete operations.
The following table lists the significant OData entities available in the PTC View Management domain. To see all the OData entities available in the PTC View Management domain, refer to the Entity Data Model (EDM) of the domain. The domain EDM is available at the metadata URL.
Items
OData Entities
Description
Views
View
The View entity represents the view object in Windchill and has the following properties:
ID: The view id
Name: The view name
ParentName: The view parent name in the view hierarchy
Level: The view level in the view hierarchy
CreatedOn: The view created date
LastModified: The view last modified date
Use the following URL to retrieve the views available in the Windchill system:
GET /Windchill/servlet/odata/ViewMgmt/Views
The response is as follows:
{
"value": [
{
"CreatedOn": "2022-08-02T18:54:06Z",
"ID": "OR:wt.vc.views.View:42769",
"LastModified": "2022-08-02T18:54:06Z",
"Level": 0,
"Name": "Design",
"ParentName": null
},
{
"CreatedOn": "2022-08-02T18:54:06Z",
"ID": "OR:wt.vc.views.View:42770",
"LastModified": "2022-08-02T18:54:06Z",
"Level": 1,
"Name": "Manufacturing",
"ParentName": "Design"
} ],
"@PTC.AppliedContainerContext.LocalTimeZone": "GMT"
}