For AI agents and LLMs: a machine-readable index is available at llms.txt. A plain-Markdown version of any documentation page is available by appending .md to its URL.
Skip to main content
ProjectsCreate Agent Project
TestMu AI
StatusCommunityBlog
Projects

Create Agent Project

Create a new agent project.

POST
/api/projects
Create Agent Project
curl --request POST \
--url "https://agent-testing.lambdatest.com/api/projects" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"description": "<description>",
"agent_type": "<agent_type>"
}'
{
"success": true,
"message": "",
"data": {
"project_id": "<string>",
"name": "<string>",
"description": "<string>",
"agent_type": "chat",
"created_at": "2018-03-15T12:00:00Z",
"updated_at": "2018-03-15T12:00:00Z"
}
}

Authorizations

Authorizationstringheaderrequired

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

Body

application/json
namestringrequired

Project name

descriptionstring

Project description

agent_typestring

Type of agent (chat, voice, or both)

Response

application/json

Successful Response

successboolean

Whether the operation was successful

messagestring

Response message

dataobject

Agent project data

data.project_idstring
Example: "<string>"
data.namestring
Example: "<string>"
data.descriptionstring
Example: "<string>"
data.agent_typestring
Example: "chat"
data.created_atstring
Example: "2018-03-15T12:00:00Z"
data.updated_atstring
Example: "2018-03-15T12:00:00Z"
Create Agent Project
curl --request POST \
--url "https://agent-testing.lambdatest.com/api/projects" \
--header "Authorization: Basic <encoded-value>" \
--header "Content-Type: application/json" \
--data '{
"name": "<name>",
"description": "<description>",
"agent_type": "<agent_type>"
}'
{
"success": true,
"message": "",
"data": {
"project_id": "<string>",
"name": "<string>",
"description": "<string>",
"agent_type": "chat",
"created_at": "2018-03-15T12:00:00Z",
"updated_at": "2018-03-15T12:00:00Z"
}
}