Reg mapping JSON Array List from Rest API Response to Pega Value List Property
The Pega PRPC version used is 8.2.1
We are Calling the REST API using Connect REST from Pega PRPC 8.2.1, in the response we receive the below conditions json array, we have mapped the below JSON Array to a value list as it is only single value elements inside the json array. snippets below,
"conditions":[
"condition text 1",
"condition text 2"
]
When this mapping is done, pega throws an error like below,
WrongModeException conditions(1) was of mode String while com.pega.pegarules.data.internal.clipboard.ClipboardPropertyImpl.getPageValue() was expecting Page mode
The same works when conditions property is created with page list type.
Is it recommended to create conditions property as pagelist for the mapping to be successful or is there an hotfix for this?
***Edited by Moderator Marissa to update platform capability tags****
Pega Creates a Page List for the below JSON code snippet when using Connect REST Wizard in Version 8.2. So even I have created a page list to store the values of the conditions. The values are stored in pyValue property of the page.
"conditions":[
"condition text 1",
"condition text 2"
]
Comments
Keep up to date on this post and subscribe to comments
Hi Dinesh,
What is default response mapper created when the Connect REST is created, by default when you create the rule from the wizard, the response structure is created either in Pega or Valuelist based on what has been referred during creation.
Check once what you had referred as a sample response while creation of the Connector Rule
- reply
In 7.3.1 it works, just checked.
Here's my configuration:
1 = Map to JSON
2 = The page property to map to
3 = The page property structure
4 = this is a value list property (Text mode)
This is a data page I use to trigger the connector:
After triggering the data page, here's the raw response from logs:
And here're the parsing results on the data page:
As you can see, all 3 values are properly mapped to Conditions value list.
- reply
- JSON response has field which is Single Page / Page list and unable to map it as different data type in Pega 7.1.9
- Is there any example for configure Connect-REST and parse Request/Response in JSON format in PRPC 6.2 SP2? There is no OOTB API such as adoptJSON or getJSON available in 6.2 SP2.
- Map response to JSON in REST Service
- Issues with Handling Dynamic Values Returned for pzExternalName with Rest JSON Response and Length of External fields to be set for mapping in pzExternalName
- How to transform a JSON Array to Code-Pega-List