Skip to main content
ProjectsCreate Project
TestMu AI
StatusCommunityBlog
Projects

Create Project

Create a New Project

POST
/api/v1/projects
Create Project
curl --request POST \
--url "https://test-manager-api.lambdatest.com//api/v1/projects" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"description": "<description>",
"tags": []
}'
{
"message": "Project created successfully",
"type": "Success",
"id": "01J5Q6WPACPV0HJNVKMG0S141Z"
}

Authorizations

Authorizationstringheaderrequired

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
namestring

Name of the project

descriptionstring

Description of the project

tagsarray

Tags associated with the project

Response

application/json

OK

messagestring
Example: "Project created successfully"
typestring
Example: "Success"
idstring
Example: "01J5Q6WPACPV0HJNVKMG0S141Z"
Create Project
curl --request POST \
--url "https://test-manager-api.lambdatest.com//api/v1/projects" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"description": "<description>",
"tags": []
}'
{
"message": "Project created successfully",
"type": "Success",
"id": "01J5Q6WPACPV0HJNVKMG0S141Z"
}