How Do I Retrieve the Free Trials for My Organization

You can retrieve information about the trials available to your organization.

VMware Cloud Director service offers a free trial that you can use to explore different customer use cases and proof-of-concept scenarios.

As part of your free trial, you can create two VMware Cloud Director trial instances within your VMware Cloud organization for a duration of 30 days with no billing applied to them. For details, see About Free Trial.

You can use the VMware Cloud Director service API to retrive information about the trials that are available to your organization.

Prerequisites

  • Verify that you are assigned the Provider Administrator role.
  • Obtain an API token from the organization you want to manage and exchange it for an access bearer token. Use the bearer token in the Authorization header when you run API calls. See How Do I Generate an API Token.

Procedure

  • Run a GET request.
    GET https://operatorUrl/organizations/organizationUrn/trials

    Here operatorUrl is the operator URL, for example vcdc-operator-prod-us-west-2.vdp.vmware.com.

    The response returns results for the free trial tickets that are available to your organization.

Example: Retrieve the Free Trials for My Organization

This example retrieves information about all the trial tickets available in your organization.

GET https://vcdc-operator-prod-us-west-2.vdp.vmware.com/organizations/urn:vcdc:organization:12345678-1234-1234-1234-123456789abc/trials
Use the bearer token in the Authorization header of the request.
Authorization: 
Bearer eyJh…I1NiIs

The response returns results for the free trial tickets that are available to your organization.

{
    "resultTotal": 3,
    "pageCount": 1,
    "page": 1,
    "pageSize": 30,
    "valueType": "Trials",
    "values": [
        {
            "id": "urn:vcdc:trial:00000000-0000-0000-0000-000000000000",
            "organizationId": "urn:vcdc:organization:11111111-2222-3333-4444-555555555555",
            "expiry": "2022-11-28T01:01:06.385861Z",
            "claimed": "urn:vcdc:vcdInstance:c55c55cc-1111-2222-3333-cc5c55c55cc5",
            "regions": null
        },
        {
            "id": "urn:vcdc:trial:11111111-1111-1111-1111-111111111111",
            "organizationId": "urn:vcdc:organization:11111111-2222-3333-4444-555555555555",
            "expiry": "2022-11-25T01:01:03.763245Z",
            "claimed": "urn:vcdc:vcdInstance:a0aa00aa-1111-2222-3333-bb4b44b44bb4",
            "regions": null
        },
        {
            "id": "urn:vcdc:trial:22222222-2222-2222-2222-222222222222",
            "organizationId": "urn:vcdc:organization:11111111-2222-3333-4444-555555555555",
            "expiry": "2022-11-25T01:01:03.763245Z",
            "claimed": "urn:vcdc:vcdInstance:b11b11bb-1111-2222-3333-bb4b44b44bb4",
            "regions": null
        }
}