Versioning
In future releases of Language Weaver Edge, improvements and changes will be made to the REST API. To reduce the chance of breaking your integrations, any backwards-incompatible changes to the API will warrant a new version number of the API. Edge 8.0 ships with v2 of the API, while Edge 7.x ships with v1 of the API. The API version is hardcoded into the URL:
https://controller-host:8001/api/v2
All endpoints in this documentation are described by an HTTP verb and a partial resource identifier, for example:
GET /api/v2/dictionaries/{dictionaryId}
To get the full URL for an endpoint, simply append the partial resource identifier to the base URL:
GET https://controller-host:8001/api/v2/dictionaries/{dictionaryId}