Skip to main content
FolderCreate Folder
TestMu AI
StatusCommunityBlog
Folder

Create Folder

Create New Folder

POST
/api/v1/folder
Create Folder
curl --request POST \
--url "https://test-manager-api.lambdatest.com/api/v1/folder" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"folders": []
}'
{
"message": "Folders created successfully",
"type": "Success",
"id": "01J5Q7Z65YF1TE22255HBRVSW7"
}

Authorizations

Authorizationstringheaderrequired

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

Body

application/json
foldersarray

Response

application/json

OK

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