Comment on page

Directories

Directories are containers for Source Files that can be used to help organize the contents of a project
post
https://api.annolab.ai
/v1/directory/create
Create Directory
Example of how to make the request to create a directory
Python
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())