-
GET /api/projects/<project_uuid>/
- Get detailed information about a specific project.- This endpoint retrieves the project's name, description, creation date, and other relevant attributes.
- The
project_uuid
is a unique identifier for the project, which can be obtained from the "List Projects" endpoint.
Request Example:
GET https://api.wayscloud.services/api/projects/550e8400-e29b-41d4-a716-446655440000/ Authorization: Token <your_api_token>
Response Example:
{
"uuid": "550e8400-e29b-41d4-a716-446655440000",
"name": "My Project",
"description": "Project for development environment",
"created": "2025-03-15T10:00:00Z",
"customer": "customer_uuid_value",
"url": "https://api.wayscloud.services/api/projects/550e8400-e29b-41d4-a716-446655440000/"
}Status Codes:
- 200 OK: The project details were successfully retrieved.
- 401 Unauthorized: The user making the request is not authorized.
- 404 Not Found: The specified project
project_uuid
does not exist.