Project

Create Project

Beta
POST

This endpoint is in beta and is subject to change. It is provided for early access and testing purposes only.
Create a new project.

Request

This endpoint expects an object.
label
stringRequired
share
objectOptional
Specifies access levels available to users in a project within an organization. For comprehensive access, the admin role is recommended.

Response

This endpoint returns an object
data
object
POST
1curl -X POST https://api.sayari.com/v1/projects \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "label": "Project Alpha"
6}'
200
Successful
1{
2 "data": {
3 "id": "YVMBRg",
4 "label": "Project Alpha",
5 "archived": false,
6 "created": "2024-03-15 20:31:06.08855+00",
7 "updated": "2024-03-15 20:31:06.08855+00",
8 "counts": {
9 "entity": 0,
10 "graph": 0,
11 "search": 0,
12 "record": 0
13 }
14 }
15}