VMware Cloud Director supports several versions of the VMware Cloud Director API. You can use a browser or other HTTP client program to send requests and receive responses.
Procedure
Example: Retrieve the Login URL and List of Supported API Versions
The api/versions request can be made by any client, whether or not the client is authenticated by VMware Cloud Director. The response, a small subset of which is shown here, includes a VersionInfo element for each API version that this VMware Cloud Director installation supports. Each VersionInfo element contains:
- A LoginUrl element that contains the URL to which a client can make a login request to access that version of the VMware Cloud Director API. See Logging In.
- For API versions earlier than 5.7, MediaTypeMapping elements for each complex type supported by that version of the VMware Cloud Director API. This optional element is not returned in the VersionInfo for API version 5.7 and later.
Request:
GET http://vcloud.example.com/api/versions
Response:
200 OK Content-Type: text/xml ... <SupportedVersions xmlns="http://www.vmware.com/vcloud/versions" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.vmware.com/vcloud/versions http://vcloud.example.com/api/versions/schema/versions.xsd"> <VersionInfo> <Version>5.1</Version> <LoginUrl>https://vcloud.example.com/api/login</LoginUrl> <MediaTypeMapping> <MediaType>application/vnd.vmware.vcloud.catalog+xml</MediaType> <ComplexTypeName>CatalogType</ComplexTypeName> <SchemaLocation>http://vcloud.example.com/api/v1.5/schema/master.xsd</SchemaLocation> </MediaTypeMapping> <MediaTypeMapping> ... </MediaTypeMapping> ... </VersionInfo> <VersionInfo> <Version>5.6</Version> <LoginUrl>https://vcloud.example.com/api/sessions</LoginUrl> <MediaTypeMapping> ... </MediaTypeMapping> ... </VersionInfo> <VersionInfo> <Version>5.7</Version> <LoginUrl>https://vcloud.example.com/api/sessions</LoginUrl> </VersionInfo> </SupportedVersions>
Note: You can use the URL in the
SchemaLocation element with a GET request to retrieve the file in which that complex type is defined. This type of request can be made by any client, whether or not the client is authenticated by
VMware Cloud Director. For example, this request retrieves the schema file
master.xsd:
GET http://vcloud.example.com/api/v1.5/schema/master.xsdAll VMware Cloud Director API requests are processed in the
http://www.vmware.com/vcloud/v1.5
XML namespace. Schema files for all API versions can be retrieved from a
.../api/v1.5/... URL.
What to do next
Decide on an HTTP client program to use. See REST Client Programs.