Creates a logging project and adds this to your account.
If using an organization API key, the project will be created as an
organizational project (requires project:write permission in the org).
If using a personal API key, the project will be a personal project.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
A unique, user-defined name used when referencing the project.
Whether the project is versioned
Icon identifier for the project
Position/order of the project in list
Optional description of the project
curl --request POST \
--url 'https://api.unify.ai/v0/project' \
--header "Authorization: Bearer $UNIFY_KEY" \
--header 'Content-Type: application/json' \
--data '{
"name": "eval-project"
}'
{
"info": "Project created successfully!"
}