Entry

Entry is the root of the api. It provide links to resources available for user.

GET

/api/entry

Request

GET /api/entry HTTP/1.1
Accept: application/json
Authorization: OAuth2 ...

Response

HTTP/1.1 200 OK
Content-Type: application/json
{
    links : [{
        href : "..."
        rel : "self"
    }, {
        href : "..."
        rel : "dictionaries"
    }, {

      href: "...",
      rel: "languages"
    },
    {
      href: "...",
      rel: "attributes"
    },
    {
      href: "...",
      rel: "relationshiptypes"
    },
    {
      href: "...",
      rel: "thesaurus"
    }
    // Other links can be added later
    ]
}
Link Details
self Link to current resource
dictionaries Link to resource for all dictionaries available to user
languages Link to language resource
attributes Link to word attribute resource
relationshiptypes Link to relationship types resource
thesaurus Link to thesaurus resource