![]() |
Consumption Analytics Documentation |
Retrieves summary information of the customers stored in your Cloud Cruiser system based on their account ID, rate plan, or account level.
XML text with root element
customers
and the following XML schema:
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://www.cloudcruiser.com/webservices/v1/Customer" targetNamespace="http://www.cloudcruiser.com/webservices/v1/Customer">
<xs:element name="customers">
<xs:complexType>
<xs:sequence>
<xs:element maxOccurs="unbounded" minOccurs="0" name="customer" type="tns:CustomerSummary"/>
</xs:sequence>
<xs:attribute name="retrievedCount" type="xs:int"/>
</xs:complexType>
</xs:element>
<xs:complexType name="CustomerSummary">
<xs:all>
<xs:element name="accountId" type="xs:string"/>
<xs:element minOccurs="0" name="description" type="xs:string"/>
</xs:all>
<xs:attribute name="id" type="xs:int"/>
</xs:complexType>
</xs:schema>
<?xml version="1.0" encoding="UTF-8"?>
<customers xmlns="http://www.cloudcruiser.com/webservices/v1/Customer" retrievedCount="6">
<customer id="19">
<accountId>B-AA-KKKK</accountId>
<description>Business Unit A, Division K</description>
</customer>
<customer id="20">
<accountId>B-AA-LLLL</accountId>
<description>Business Unit A, Division L</description>
</customer>
<customer id="21">
<accountId>B-AA-MMMM</accountId>
<description>Business Unit A, Division M</description>
</customer>
<customer id="22">
<accountId>B-AA-NNNN</accountId>
<description>Business Unit A, Division N</description>
</customer>
<customer id="23">
<accountId>B-AA-OOOO</accountId>
<description>Business Unit A, Division O</description>
</customer>
<customer id="24">
<accountId>B-AA-PPPP</accountId>
<description>Business Unit A, Division P</description>
</customer>
</customers>
(c) Copyright 2017-2020 Hewlett Packard Enterprise Development LP