Help & Tools
The OData metadata document
The metadata document describes the Entity Data Model (EDM) of the OData service, using an XML language called the Conceptual Schema Definition Language (CSDL). The metadata document shows the structure of the data in the OData service and can be used to generate client code. This is the recommended overview for the consumer to indicate the location of a particular resource or API endpoint. To retrieve the metadata document, send the following request:
GET http://localhost:59318/odata/v1/$metadata
Swagger Web API help
Swagger is a machine-readable representation of a RESTful API that enables support for interactive documentation and discoverability. It is capable of sending test requests to the API via a Try It Out button. To open the Swagger help pages, send the following request:
GET http://localhost:59318/docs/api
Client test tool
The Smartstore source code includes a Windows Forms application for testing the API. It is included in the source code package that can be downloaded from the Smartstore Releases page. The client source code is open source. It can be found at GitHub under tools/Smartstore.WebApi.Client. A simple JavaScript client is also available under tools/Smartstore.WebApi.ClientJavaScript.
Alternatively, you can use Postman to submit requests to the API.
Last updated
Was this helpful?