Get Project

Get Project

Get project with a given id

Request
URI
GET
https://{api_host}/iaas/api/projects/{id}
COPY
Path Parameters
string
id
Required

The ID of the project.

Query Parameters
string
apiVersion
Optional

The version of the API in yyyy-MM-dd format (UTC). For versioning information please refer to /iaas/api/about


Responses
200

successful operation

Returns Project of type(s) application/json
{
    "owner": "[email protected]",
    "operationTimeout": 0,
    "description": "my-description",
    "zones": [
        {
            "zoneId": "77ee1",
            "maxNumberInstances": 50,
            "priority": 1
        }
    ],
    "orgId": "9e49",
    "organizationId": "deprecated",
    "createdAt": "2012-09-27",
    "machineNamingTemplate": "${project.name}-test-${####}",
    "sharedResources": false,
    "members": [
        {
            "email": "[email protected]"
        }
    ],
    "name": "my-name",
    "id": "9e49",
    "administrators": [
        {
            "email": "[email protected]"
        }
    ],
    "updatedAt": "2012-09-27"
}
string
owner
Optional

Email of the user that owns the entity.

object
_links
Required

HATEOAS of the entity

integer As int64 As int64
operationTimeout
Optional

The timeout that should be used for Blueprint operations and Provisioning tasks. The timeout is in seconds

string
description
Optional

A human-friendly description.

zones
Optional

List of Cloud Zones assigned to this project. You can limit deployment to a single region or allow multi-region placement by adding more than one cloud zone to a project. A cloud zone lists available resources. Use tags on resources to control workload placement.

object
constraints
Optional

List of storage, network and extensibility constraints to be applied when provisioning through this project.

string
orgId
Optional

The id of the organization this entity belongs to.

string
organizationId
Optional

This field is deprecated. Use orgId instead. The id of the organization this entity belongs to.

string
createdAt
Optional

Date when the entity was created. The date is in ISO 6801 and UTC.

string
machineNamingTemplate
Optional

The naming template to be used for machines provisioned in this project

boolean
sharedResources
Optional

Specifies whether the resources in this projects are shared or not.

array of User
members
Optional

List of member users associated with the project.

string
name
Optional

A human-friendly name used as an identifier in APIs that support this option.

string
id
Required

The id of this resource instance

array of User
administrators
Optional

List of administrator users associated with the project. Only administrators can manage project's configuration.

string
updatedAt
Optional

Date when the entity was last updated. The date is ISO 8601 and UTC.


403

Forbidden

Operation doesn't return any data structure

404

Not Found

Operation doesn't return any data structure