Projects › Get Agent Projects
Projects
Get Agent Projects Get all agent projects for the current organization.
curl -- request GET \
-- url "https://agent-testing.lambdatest.com/api/projects" \
-- header "Authorization: Basic <encoded-value>"
{
"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" ,
"workflows" : [
{ }
]
}
]
}
Authorizations Authorization string header required
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Response 200▼
application/json Successful Response
success boolean
Whether the operation was successful
message string
Response message
data object[]
List of agent projects with workflow IDs
▶ Hide child attributesdata. project_id string
Example: "<string>"
data. name string
Example: "<string>"
data. description string
Example: "<string>"
data. agent_type string
Example: "chat"
data. created_at string
Example: "2018-03-15T12:00:00Z"
data. updated_at string
Example: "2018-03-15T12:00:00Z"
curl -- request GET \
-- url "https://agent-testing.lambdatest.com/api/projects" \
-- header "Authorization: Basic <encoded-value>"
{
"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" ,
"workflows" : [
{ }
]
}
]
}