Create Project

To create a new project, you can make a POST request to the /api/projects/ endpoint.

Request

POST /api/projects/
{
"name": "My New Project",
"description": "This project will host various cloud resources."
}

Response

On a successful request, you will receive the details of the newly created project, including the project UUID.

{
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"name": "My New Project",
"description": "This project will host various cloud resources."
}

Notes

The name field is required and should be a string representing the name of your project. The description field is optional but provides additional context for the project.