Description
API ReferenceAnnotations

Get Annotation Criteria

GET
/v1/annotation-criteria/{id}
/v1/annotation-criteria/{id}

The Authorization access token

Authorization

X-API-KEY<token>

In: header

Path Parameters

id
Required
Id

Format: "uuid"
curl -X GET "https://api.patronus.ai/v1/annotation-criteria/497f6eca-6276-4993-bfeb-53cbbbba6f08" \
  -H "X-API-KEY: <token>"

Successful Response

{
  "annotation_criteria": {
    "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
    "project_id": "405d8375-3514-403b-8c43-83ae74cfe0e9",
    "name": "string",
    "description": "string",
    "annotation_type": "string",
    "categories": [
      {
        "label": "string",
        "score": 0
      }
    ],
    "created_at": "2019-08-24T14:15:22Z",
    "updated_at": "2019-08-24T14:15:22Z"
  }
}