Community Tip - If community subscription notifications are filling up your inbox you can set up a daily digest and get all your notifications in a single email. 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
