Directories

Directories are containers for Source Files that can be used to help organize the contents of a project

Create Directory

POST https://api.annolab.ai/v1/directory/create

Create a new directory within the project

Headers

NameTypeDescription

Authorization

string

Where you put your api key. Creating a directory requires a key with "Write" permissions. {"Authorization": "Api-Key XXXXXXX-XXXXXXX-XXXXXXX"}

Request Body

NameTypeDescription

projectIdentifier

string

Identifier of the project that the directory will be created within. Either id or the unique name of the project.

name

string

Name of the directory you wish to create

{
    "name": "Wikipedia Subset",
    "id": 12,
    "projectname": "New NER Project",
    "projectId": 22
}

Example of how to make the request to create a directory

import requests

ANNO_LAB_API_KEY = 'XXXXXXX-XXXXXXX-XXXXXXX-XXXXXXX'

directory = {
  'projectIdentifier': 'New NER Project',
  'name': 'Wikipedia Subset'
}

headers = {
  'Authorization': 'Api-Key '+ANNO_LAB_API_KEY,
}

url = 'https://api.annolab.ai/v1/directory/create'

response = requests.post(url, headers=headers, json=directory)

print(response.json())

Last updated