OData Content - Getting Property Content

Example

The following request returns the value of the Customer property on the specified row of the Flows0 flow.

GET <slURL>/queries/6089913651317040730/data.svc/Flows0(3)/Customer

Response type: application/xml

<?xml version="1.0" encoding="utf-8"?>
<Customer xmlns="http://schemas.microsoft.com/ado/2007/08/dataservices"
    xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">Chicago Mall</Customer>

Response type: application/json

{"d": [ 
    {"__metadata":
        {"uri": "http://w2k8x64sp2:6405/biprws/sl/v1/queries/6089913651317040730/data.svc/Flow0(3)", 
         "type": "Flows._Flow0" 
	   },
     "Customer": "Chicago Mall", 
    },
]}