[OperationContract]
[SwaggerWcfTag("Catalog categories", false)]
[SwaggerWcfPath(null, null, null, null, null, false, null, Summary = "Get the category by id", Description = "Returns the catalog category info corresponding to the given id")]
[WebGet(UriTemplate = "/Entry?id={id}", ResponseFormat = WebMessageFormat.Json)]
[SwaggerWcfResponse(Description = "Success", StatusCode = HttpStatusCode.OK)]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.BadRequest, Description = "Invalid language and/or iteration option", Type = typeof(JsonErrorMessage))]
[SwaggerWcfResponse(StatusCode = HttpStatusCode.InternalServerError, Description = "An unexpected error occurred while processing the request.", Type = typeof(JsonErrorMessage))]
CatalogCategoryEntryContract GetEntry(int id)