Now we have an necessary announcement to make – Utilization Meter and Utilization Report APIs are actually a part of the Cloud Supplier Navigator and might be accessed from the Cloud Supplier part on developer.vmware.com. Moreover, there’s a new API for registering Utilization Meter with a contract within the VCPP Commerce Portal. Right here is how the Utilization API web page seems like on developer.vmware.com.

On this weblog publish, we are going to show the steps of registering a Utilization Meter occasion, getting info and downloading utilization experiences.
Earlier than utilizing the aforementioned APIs, there are a number of conditions that should be glad.
Conditions
- A refresh token generated from Cloud Associate Navigator/Consumer Profile/API Tokens. Info might be discovered right here or scroll to the Producing an Entry Token part on this weblog publish.
- An entry token generated from the Cloud Associate Navigator refresh token. Learn right here or scroll to the Producing an Entry Token part on this weblog publish.
Word: A generated entry token expires after half-hour so it is advisable regenerate it on occasion.
Producing an Entry Token for Authentication
To execute the API requests described on this weblog publish, you’ll need to generate a refresh token from Cloud Associate Navigator (CPN) after which execute a POST request to the Cloud Companies Portal gateway to get the entry token with which you’ll authenticate with the CPN service – Utilization Perception.
The Utilization Perception service is the service which can register your Utilization Meter with a contract within the Commerce Portal and generate experiences for a Utilization Meter occasion.
Now let’s see how one can generate an entry token:
- Log in to Cloud Associate Navigator.
- Swap to the group for which you want to register a Utilization Meter or obtain utilization experiences.
- Beneath your username, click on My Account.
- Click on on the API Tokens tab.
- Within the API Tokens web page, click on GENERATE TOKEN.
- Copy the token and click on Proceed.

Word: Save your refresh token someplace as you’ll need it repeatedly to generate an entry token to your utilization API calls.
- In your API shopper, make the next POST Request to the Cloud Associate Navigator Service Gateway to generate an entry token.
|
POST https://console.cloud.vmware.com/csp/gateway/am/api/auth/api-tokens/authorize |
This entry token you’ll use to authenticate with Utilization Perception when sending the request for registering your Utilization Meter with a contract within the Commerce Portal.
See the pattern request and response:

Pattern cURL Code:
|
curl —location —request POST ‘https://console-.cloud.vmware.com/csp/gateway/am/api/auth/api-tokens/authorize’ —header ‘Content material-Kind: software/x-www-form-urlencoded’ —header ‘Settle for: software/json’ —header ‘Cookie: incap_ses_875_1285679=dI6yChlNDWmSHUSOe6AkDJeH22MAAAAAVl2Twv8diGo4dJ3dWNmwZg==; nlbi_1285679=U7QpOt23TR0lxkHi+iiRRwAAAACv7L8J9/EtUtWlx9vSOrbq’ —knowledge–urlencode ‘refresh_token=7lz-3tDup5w1xGV54iRHyhlEIq5Malq1Ii5ZgoYuCBqq95jbwIvTBLsCxu3RsNyU’ |
Word: Substitute the refresh token with your individual generated from the CPN API Token web page.
- Copy the entry token from the response. Use it when executing the API requests described on this weblog publish.
Checking if a Utilization Meter occasion is registered
Earlier than registering a Utilization Meter, test if it has already been registered with Utilization Perception.
Right here is how one can do it:
- Execute the next GET registration request:
|
GET https://ums.vmware.com/utilization/api/v1/agent-registrations/um-uuid |
- Use the UUID of your Utilization Meter.
- Use the generated entry token to authenticate to the service.
- In case your registration is profitable, you’re going to get the next response: Standing 200 OK, additionally a contract quantity, and a website title. See the screenshot under:

Pattern cURL Code
|
curl —location —request GET ‘https://ums.vmware.com/utilization/api/v1/agent-registrations/9273dc74-2cef-4009-abcc-69fe9ccfde8d’ —header ‘Authorization: Bearer |
Word: Substitute the Utilization Meter UUID with your individual. You will discover it in your Utilization Meter net software, beneath the About tab. Use the entry token you generated for the authorization.
Registering a Utilization Meter within the Commerce Portal
To register your Utilization Meter with a contract within the Commerce Portal utilizing the brand new REST API, you’ll need to authenticate with the Utilization Perception service to which to ship the registration request.
Listed here are the precise steps:
- Ship POST request to the Utilization Perception service, which can deal with the registration of the Utilization Meter occasion with a contract within the Commerce Portal.
|
POST https://ums.vmware.com/utilization/api/v1/agent-registrations |
- Within the physique of the request, you have to specify the next:
|
{ “agentId”: “88531d1c-296e-4b47-8431-c0e8182148e7”, // that is the UM UUID “connectivityMode”: “ONLINE”, //the mode during which UM will report knowledge “contractNumber”: “1012345”, // the variety of the VCPP contract with which you’ll register your UM “label”: “um46-reg-demo”, // the title you’ll give to your Utilization Meter “meteringMode”: “PRODUCTION”, // the mode during which the information might be reported to the Commerce Portal “siteName”: “Website A”, // the location of the group with which you’ll register this UM “model”: “4.6” // The UM model Word: Don’t use 4.x right here, because the request will return an error. }
|
- For the authorization with the Utilization Perception service, use the generated entry token.
- Execute the request. If the Utilization Meter registration is profitable, then you’re going to get code 202. See an instance under:

If this Utilization Meter has already been registered, you’re going to get code 201.
- Go to the VMware Commerce portal to confirm if Utilization Meter is registered with the required contract and org website.
Pattern cURL code
}’
|
curl —location —request POST ‘https://ums.vmware.com/utilization/api/v1/agent-registrations’ —header ‘Content material-Kind: software/json’ —header ‘Authorization: Bearer –data-raw ‘{ “agentId”: “88531d1c-296e-4b47-8431-c0e8182148e7”, “connectivityMode”: “ONLINE”, “contractNumber”: “1012345”, “label”: “um46-reg-demo”, “meteringMode”: “PRODUCTION”, “siteName”: “Website A”, “model”: “4.6”
}‘ |
Word: Use your Utilization Meter particulars an present the entry token you generated from the CPN refresh token.
Getting Info on All Utilization Studies
Utilization report API is now dully documented and is able to be carried out in your group. Listed here are the API requests that you should use to automate your utilization report era:
- Get info on all utilization experiences for a particular month and 12 months for a company
- Obtain a particular utilization report by specifying its reference quantity retrieved from the get info on all utilization experiences API request
- Lastly, get info on all experiences related by a utilization meter UUID
Get Info on All Utilization Studies for a Month
To get info on all utilization experiences of all Utilization Meters in your CPN group for a selected month and 12 months, do the next:
- Execute GET https://ums.vmware.com/utilization/api/v1/experiences/2023/1 request to the Utilization Perception service endpoint.
- Present the month and 12 months for which you want to get all utilization experiences for all of your registered Utilization Meters.
- Authenticate to Utilization Perception with the generated entry token.
- In case your request is profitable, you’re going to get Standing 200 OK and an inventory of all utilization experiences related to Utilization Meter UUID. Right here is an instance of the response.

Pattern cURL code
|
curl —location —request GET ‘https://ums.vmware.com/utilization/api/v1/experiences/2023/01’ —header ‘Authorization: Bearer
|
Word: Specify a month and a 12 months for which to get info on all utilization experiences of a CPN group.
Obtain a Particular Utilization Report
To obtain a particular Utilization Meter report, it is advisable present within the parameters of your API request the reference variety of that report. To seek out it, you want first to set off GET info on all utilization experiences request. See the Getting Info on All Utilization Studies for a Month part.
Right here is how one can obtain a particular Utilization Meter report:
1. Make a GET request to https://ums.vmware.com/utilization/api/v1/experiences and specify the next:
- Within the parameters of the request enter the reference variety of the report. This worth you have to retrieve from the request defined within the Get Info on All Studies for a Month part.
- Within the header of the request, you have to specify the Settle for parameter to be the content material kind of the report (once more get this info from the get info on all utilization experiences API request)
- Authenticate to the Utilization Perception service by utilizing the generated entry code.
- The response might be Standing 200 OK if the request is profitable, and also you additionally get the textual content of the zipped report. On this instance, the response will not be decoded as Postman does node decode the content material of zipped recordsdata.
- Save the response. In Postman, the best way to do it’s to click on Save Response. This manner you’ll obtain the referenced report.

Pattern cURL code
|
curl —location —request GET ‘https://ums.vmware.com/utilization/api/v1/experiences?ref=nPrNoRBz9cjia2YSJvUPpBNQY3raKZidg7dGzdAkmpercent2FzNGJFpVEKmccXNchrMZA7tHJKtWuOtbwmj0rB1gXb48PMQx0iSYRpercent2Fl1MYB03sZa7G8A4JGppTBszl6gmVXapXFjO2g’ —header ‘Settle for: textual content/tab-separated-values+gzip’ —header ‘Content material-Kind: software/json’ —header ‘Authorization: Bearer |
Word: Use the reference variety of the report you want to obtain the your generated entry token.
Get Info on all Studies of a Utilization Meter Occasion
To get info on all utilization experiences of a particular Utilization Meters, do the next:
- Execute a GET request to the Utilization Perception service, specifying the month and 12 months for which you want to get info and the uuid of the utilization meter with which the experiences are related.
- Present the generated entry token with which to authenticate with the Utilization Perception service.
- You’re going to get the next response: Standing 200 OK and the small print of all experiences associated to this Utilization Meter and their reference numbers.
Word: Use the reference variety of the experiences you want to obtain with the GET / https://ums.vmware.com/utilization/api/v1/experiences API request.
Right here is an instance of the request and its response.

Pattern cURL Code
|
curl —location —request GET ‘https://ums.vmware.com/utilization/api/v1/experiences/2023/01/9273dc74-2cef-4009-abcc-69fe9ccfde8d’ —header ‘Authorization: Bearer
|
Word: Specify a month and a 12 months for which to get info on all utilization experiences related to the uuid of your utilization meter. Substitute the Utilization Meter UUID on this instance with your individual.
Conclusion
In a conclusion, you should use these APIs as a part of your Utilization Meter reporting automation. Now with the registration of the Utilization Meter occasion you possibly can absolutely automate the set up and configuration of your Utilization Meter cases.
We’ll maintain enhancing and increasing our Utilization Meter-related APIs and need to hear from you about what different APIs we are able to develop to enhance your reporting expertise.
The remainder of the Utilization Meter API requests might be discovered right here. Cloud Associate Navigator and Commerce Portal APIs might be discovered right here and right here.
For extra questions or queries, go away a remark under or ship us an e-mail to usagemeter@vmware.com. There’s a Slack channel out there to cloud suppliers the place you can even ask your questions.