List all projects

Retrieves a list of all available projects for a specific Autogon user.

Lists all projects.

GET https://autogon.ai/api/v1/engine/project/

Returns a list of available projects for a specific user.

Headers

NameTypeDescription

Content-Type

String

application/json

X-AUG-TOKEN*

String

YOUR_API_KEY

[
    {
	    "id": 0,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    {
	    "id": 1,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    {
	    "id": 2,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    {
	    "id": 3,
	    "app_id": "",
	    "project_name": "",
	    "project_description": "",
	    "project_compiled_models": null,
	    "updated_at": "",
	    "created_at": ""
    },
    ...
]

Last updated