Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

Service Document

Trevor Pilley edited this page Jan 19, 2018 · 1 revision

The library will return the service document which is built from the data in the Entity Data Model if a GET request is issued to the service root (e.g. http://myservice/odata).

e.g.:

{
    "@odata.context": "http://myservice/odata/$metadata",
    "value": [
        {
            "name": "Categories",
            "kind": "EntitySet",
            "url": "Categories"
        },
        {
            "name": "Products",
            "kind": "EntitySet",
            "url": "Products"
        }
    ]
}
Clone this wiki locally