v1

latestSwagger 2.02026-08-04232286653.5 KB
Projects

Lists all projects the logged-in user belongs to or owns and returns their details.

If querying for projects within an organization, the logged-in user must be the owner of the organization.

get/organizations/projects

Query parameters

org_idstring

Filters results to projects in this organization.

project_namestring

Filters results to projects with this name.

skip_loading_project_resourcesboolean

Whether to skip loading the resource counts for each project.

Response

Example response

{
  "items": [
    {
      "id": "09ae8411-0fbb-411c-898c-2b8f19622ae1",
      "name": "Admin",
      "organization_id": "ab4a6b00-aa5f-408e-a9fb-ac6de5eb45ab",
      "relation": "owner",
      "resources": {
        "disks": {
          "count": 5
        },
        "images": {
          "count": 5
        },
        "instances": {
          "count": 5
        },
        "snapshots": {
          "count": 5
        },
        "vpc_networks": {
          "count": 5
        }
      }
    }
  ]
}