Web Service Method: Request a List of Classifiers
Abstract
Web Service Method: Request a List of Classifiers
Description |
---|
Get a list of existing classifiers. |
URL: /PoolParty/api/classification/{project}/classifiers
Content-Type
Content-Type: */*
Request
Supported Methods |
---|
GET |
Path Variables
Variable | Description |
---|---|
{project} | The project UUID or textual identifier |
Response
This method returns execution results in JSON format.
JsonClassifierList
List of Classifier Information
Attribute | Type |
---|---|
jsonClassifierList | Array of JsonClassifier |
message | String |
plainMessage | String |
reportable | boolean |
success | boolean |
Example Response
{ "jsonClassifierList" : [ { "name" : "some name", "isOnline" : true, "language" : "en-us", "uri" : "https://semantic-web.com/api/uri#2857", "status" : "some status" }, { "name" : "some name", "isOnline" : false, "language" : "cz", "uri" : "https://semantic-web.com/api/uri#7252", "status" : "some status" } ], "plainMessage" : "some plainMessage", "success" : false, "reportable" : true, "message" : "some message" }