Hi,
I have a JSON response (see below) coming back and cannot seem to get the value back for 2 fields:
I need to know how I can pull out the Billing Type and state. What I tried was:
Project[*].entities[*].state.id
"Project": [
{
"entities": [
{
"id": "/Project/77x229fm8s13kyzjphcvkg2lo121",
"sysid": "P-72901",
"C_ServicesRevenue": null,
"C_CPONumber": "",
"C_OCId_Project": null,
"name": "Testing for Cases, Risks, Issues, etc",
"description": null,
"BillingType": {
"id": "/ProjectBillingType/Fixed Price"
},
"state": {
"id": "/State/Active"
}
},
thanks