GET /service/api/securecloud/customers
 ?limit={limit}
 &offset={offset}
 &includeClosedCustomers={includeClosedCustomers}
    Provides a paginated list of all end customers, with only active customers included by default. Optionally includes closed customers based on the provided parameters.
Request Information
URI Parameters
| Name | Description | Type | Additional Information | 
|---|---|---|---|
| limit | The maximum number of records to return. Valid values are between 10 and 1000. | integer | None. | 
| offset | Specifies the number of records to skip, determining the starting point for displaying results. The record index starts from zero. | integer | None. | 
| includeClosedCustomers | Specifies whether to include closed customers in the results. Set to true to include closed customers; otherwise, only active customers are returned. | boolean | Default value is False | 
URI Sample(s)
| GET | https://unityapi.webrootcloudav.com/service/api/securecloud/customers?limit=15&offset=0 | 
| GET | https://unityapi.webrootcloudav.com/service/api/securecloud/customers?limit=10 | 
| GET | https://unityapi.webrootcloudav.com/service/api/securecloud/customers?limit=15&offset=0&includeClosedCustomers=false | 
Body Parameters
None.
Response Information
Resource Description
List of end customers.
GetAllCustomersResponseModel| Name | Description | Type | Additional Information | 
|---|---|---|---|
| Customers | List of customer detail records. | Collection of GetCustomerResponseModel | None. | 
| Links | Pagination information. | GetAllCustomersResponseModelPageLinks | None. | 
| Meta | Additional information of the response. | GetAllCustomersResponseModelPageMeta | None. | 
Sample Response
{
  "Customers": [
    {
      "CustomerId": "a758e45f-bc49-427f-9774-4956cc8a6f5a",
      "CustomerNumber": "500021",
      "Currency": "USD",
      "CustomerSince": "2025-10-31T08:58:00.5131569Z",
      "IsClosed": false,
      "Name": "Quixotic Quote",
      "CustomerType": "Resold",
      "AddressLine1": "1900 Sample Address Line",
      "AddressLine2": "",
      "StateOrProvince": "MS",
      "Country": "US",
      "Municipality": "FWB",
      "PostalCode": "32566",
      "Website": "http://quixotic-quote.test",
      "Industry": "Accounting",
      "Culture": "en-US",
      "TimeZone": "Central Standard Time",
      "ExternalCustomerAccountNumber": null,
      "AutoConvertTrials": true
    },
    {
      "CustomerId": "0fa6127c-ac55-456d-828b-1faf3910acb5",
      "CustomerNumber": "500021",
      "Currency": "USD",
      "CustomerSince": "2025-10-31T08:58:00.5131569Z",
      "IsClosed": false,
      "Name": "Aston Technologies",
      "CustomerType": "Resold",
      "AddressLine1": "1900 St.marks street",
      "AddressLine2": "",
      "StateOrProvince": "MS",
      "Country": "US",
      "Municipality": "Cantonment",
      "PostalCode": "32533",
      "Website": "http://ashtontech.com",
      "Industry": "Education",
      "Culture": "en-US",
      "TimeZone": "Central Standard Time",
      "ExternalCustomerAccountNumber": null,
      "AutoConvertTrials": true
    }
  ],
  "Links": {
    "NextPageLimit": 20,
    "NextPageOffset": 21
  },
  "Meta": {
    "Page": {
      "Total": 383
    }
  }
}                    
                
<GetAllCustomersResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Webroot.UnityAPI.ServiceExtension.SecureCloud.Models">
  <Customers>
    <GetCustomerResponseModel>
      <AddressLine1>1900 Sample Address Line</AddressLine1>
      <AddressLine2></AddressLine2>
      <AutoConvertTrials>true</AutoConvertTrials>
      <Country>US</Country>
      <Culture>en-US</Culture>
      <CustomerType>Resold</CustomerType>
      <ExternalCustomerAccountNumber i:nil="true" />
      <Industry>Accounting</Industry>
      <Municipality>FWB</Municipality>
      <Name>Quixotic Quote</Name>
      <PostalCode>32566</PostalCode>
      <StateOrProvince>MS</StateOrProvince>
      <TimeZone>Central Standard Time</TimeZone>
      <Website>http://quixotic-quote.test</Website>
      <Currency>USD</Currency>
      <CustomerId>a758e45f-bc49-427f-9774-4956cc8a6f5a</CustomerId>
      <CustomerNumber>500021</CustomerNumber>
      <CustomerSince>2025-10-31T08:58:00.5131569Z</CustomerSince>
      <IsClosed>false</IsClosed>
    </GetCustomerResponseModel>
    <GetCustomerResponseModel>
      <AddressLine1>1900 St.marks street</AddressLine1>
      <AddressLine2></AddressLine2>
      <AutoConvertTrials>true</AutoConvertTrials>
      <Country>US</Country>
      <Culture>en-US</Culture>
      <CustomerType>Resold</CustomerType>
      <ExternalCustomerAccountNumber i:nil="true" />
      <Industry>Education</Industry>
      <Municipality>Cantonment</Municipality>
      <Name>Aston Technologies</Name>
      <PostalCode>32533</PostalCode>
      <StateOrProvince>MS</StateOrProvince>
      <TimeZone>Central Standard Time</TimeZone>
      <Website>http://ashtontech.com</Website>
      <Currency>USD</Currency>
      <CustomerId>0fa6127c-ac55-456d-828b-1faf3910acb5</CustomerId>
      <CustomerNumber>500021</CustomerNumber>
      <CustomerSince>2025-10-31T08:58:00.5131569Z</CustomerSince>
      <IsClosed>false</IsClosed>
    </GetCustomerResponseModel>
  </Customers>
  <Links>
    <NextPageLimit>20</NextPageLimit>
    <NextPageOffset>21</NextPageOffset>
  </Links>
  <Meta>
    <Page>
      <Total>383</Total>
    </Page>
  </Meta>
</GetAllCustomersResponseModel>