Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
Version: Windchill 12.1
Use Case: WRS How to get Change Notices by Context Name/ID in Thingworx/WRS?
Description:
WRS How to get Change Notices by Context Name/ID in Thingworx/WRS?
Solved! Go to Solution.
The Change Management domain has an end point for Change Notices, which can get them all.
https://<my_host>/Windchill/servlet/odata/v8/ChangeMgmt/ChangeNotices
It doesn't include Context Name, so Expand it
$expand=Context
Add a filter for one context name if you want
$filter=Context/Name eq '<my_context_name>'
E.g.
https://<my_host>/Windchill/servlet/odata/v8/ChangeMgmt/ChangeNotices?$filter=Context/Name eq '<my_context_name>'&$expand=Context
The Change Management domain has an end point for Change Notices, which can get them all.
https://<my_host>/Windchill/servlet/odata/v8/ChangeMgmt/ChangeNotices
It doesn't include Context Name, so Expand it
$expand=Context
Add a filter for one context name if you want
$filter=Context/Name eq '<my_context_name>'
E.g.
https://<my_host>/Windchill/servlet/odata/v8/ChangeMgmt/ChangeNotices?$filter=Context/Name eq '<my_context_name>'&$expand=Context
