We have now an essential announcement to make – Utilization Meter and Utilization Report APIs at the moment are a part of the Cloud Supplier Navigator and could 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 submit, we are going to display the steps of registering a Utilization Meter occasion, getting data and downloading utilization experiences.
Earlier than utilizing the aforementioned APIs, there are a couple of stipulations that must be glad.
Stipulations
- A refresh token generated from Cloud Accomplice Navigator/Consumer Profile/API Tokens. Data could be discovered right here or scroll to the Producing an Entry Token part on this weblog submit.
- An entry token generated from the Cloud Accomplice Navigator refresh token. Learn right here or scroll to the Producing an Entry Token part on this weblog submit.
Be aware: A generated entry token expires after half-hour so you want to regenerate it every now and then.
Producing an Entry Token for Authentication
To execute the API requests described on this weblog submit, you will have to generate a refresh token from Cloud Accomplice 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 generate an entry token:
- Log in to Cloud Accomplice Navigator.
- Swap to the group for which you want to register a Utilization Meter or obtain utilization experiences.
- Below 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.

Be aware: Save your refresh token someplace as you will have it repeatedly to generate an entry token in your utilization API calls.
- In your API shopper, make the next POST Request to the Cloud Accomplice 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: utility/x-www-form-urlencoded’ —header ‘Settle for: utility/json’ —header ‘Cookie: incap_ses_875_1285679=dI6yChlNDWmSHUSOe6AkDJeH22MAAAAAVl2Twv8diGo4dJ3dWNmwZg==; nlbi_1285679=U7QpOt23TR0lxkHi+iiRRwAAAACv7L8J9/EtUtWlx9vSOrbq’ —information–urlencode ‘refresh_token=7lz-3tDup5w1xGV54iRHyhlEIq5Malq1Ii5ZgoYuCBqq95jbwIvTBLsCxu3RsNyU’ |
Be aware: Substitute the refresh token with your personal 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 submit.
Checking if a Utilization Meter occasion is registered
Earlier than registering a Utilization Meter, verify if it has already been registered with Utilization Perception.
Right here is 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 beneath:

Pattern cURL Code
|
curl —location —request GET ‘https://ums.vmware.com/utilization/api/v1/agent-registrations/9273dc74-2cef-4009-abcc-69fe9ccfde8d’ —header ‘Authorization: Bearer |
Be aware: Substitute the Utilization Meter UUID with your personal. You’ll find it in your Utilization Meter net utility, underneath 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 will have to authenticate with the Utilization Perception service to which to ship the registration request.
Listed below 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 could specify the next:
|
{ “agentId”: “88531d1c-296e-4b47-8431-c0e8182148e7”, // that is the UM UUID “connectivityMode”: “ONLINE”, //the mode wherein UM will report information “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 wherein the information can be reported to the Commerce Portal “siteName”: “Website A”, // the positioning of the group with which you’ll register this UM “model”: “4.6” // The UM model Be aware: 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 beneath:

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 desired contract and org website.
Pattern cURL code
}’
|
curl —location —request POST ‘https://ums.vmware.com/utilization/api/v1/agent-registrations’ —header ‘Content material-Kind: utility/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”
}‘ |
Be aware: Use your Utilization Meter particulars an present the entry token you generated from the CPN refresh token.
Getting Data on All Utilization Studies
Utilization report API is now dully documented and is able to be applied in your group. Listed below are the API requests that you should use to automate your utilization report technology:
- Get data on all utilization experiences for a particular month and yr for a corporation
- Obtain a particular utilization report by specifying its reference quantity retrieved from the get data on all utilization experiences API request
- Lastly, get data on all experiences related by a utilization meter UUID
Get Data on All Utilization Studies for a Month
To get data on all utilization experiences of all Utilization Meters in your CPN group for a selected month and yr, 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 yr 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 a listing 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
|
Be aware: Specify a month and a yr for which to get data on all utilization experiences of a CPN group.
Obtain a Particular Utilization Report
To obtain a particular Utilization Meter report, you want to present within the parameters of your API request the reference variety of that report. To search out it, you want first to set off GET data on all utilization experiences request. See the Getting Data on All Utilization Studies for a Month part.
Right here is 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 could retrieve from the request defined within the Get Data on All Studies for a Month part.
- Within the header of the request, you could specify the Settle for parameter to be the content material sort of the report (once more get this data from the get data on all utilization experiences API request)
- Authenticate to the Utilization Perception service through the use of the generated entry code.
- The response can 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 shouldn’t be decoded as Postman does node decode the content material of zipped information.
- 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: utility/json’ —header ‘Authorization: Bearer |
Be aware: Use the reference variety of the report you want to obtain the your generated entry token.
Get Data on all Studies of a Utilization Meter Occasion
To get data 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 yr for which you want to get data 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’ll get the next response: Standing 200 OK and the main points of all experiences associated to this Utilization Meter and their reference numbers.
Be aware: 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
|
Be aware: Specify a month and a yr for which to get data on all utilization experiences related to the uuid of your utilization meter. Substitute the Utilization Meter UUID on this instance with your personal.
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’ll be able to totally automate the set up and configuration of your Utilization Meter situations.
We are going to preserve enhancing and increasing our Utilization Meter-related APIs and wish 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 could be discovered right here. Cloud Accomplice Navigator and Commerce Portal APIs could be discovered right here and right here.
For extra questions or queries, depart a remark beneath or ship us an electronic mail to [email protected]. There’s a Slack channel out there to cloud suppliers the place it’s also possible to ask your questions.