Response contains:
|
Operation
|
URI
|
The names of all entities in the schema
|
GET
|
<myserver>:<port>/api/odata/<myds>
|
Example: https://mustng02:8443/api/odata/myds
|
||
The names, properties, data types, and relationships for all entities in the schema
|
GET
|
<myserver>:<port>/api/odata/<myds>/$metadata
|
Example: https://mustng02:8443/api/odata/myds/$metadata
|
||
A single entity
|
GET
|
<myserver>:<port>/api/odata/<myds>/<entity_plural_name>('<primary_key_value>
|
Example: https://mustng02:8443/api/odata/myds/ACCOUNTS('123')
|
||
A single entity from a particular data source in a data source group
|
GET
|
<myserver>:<port>/api/odata/<myds>/<ds_prefix>_<entity_plural_name>('<primary_key_value>
|
Example: https://mustng02:8443/api/odata/myds/east_ACCOUNTS('123')
|