Skip to main content
12-Amethyst
March 28, 2025
Solved

WRS How to get Change Notices by Context Name/ID in Thingworx/WRS?

  • March 28, 2025
  • 1 reply
  • 461 views

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?

Best answer by rhart

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

 

1 reply

rhart16-PearlAnswer
16-Pearl
March 31, 2025

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