Yandex Cloud
  • Services
  • Solutions
  • Why Yandex Cloud
  • Blog
  • Pricing
  • Documentation
  • Contact us
Get started
Language / Region
Yandex project
© 2023 Intertech Services AG
Billing
  • Getting started
  • Step-by-step guides
  • Concepts
  • Paying for resources
  • Tutorials
  • Access management
  • Pricing policy
  • Questions and answers
  • API reference
    • Authentication in the API
    • gRPC
    • REST
      • Overview
      • BillingAccount
      • Budget
      • Customer
        • Overview
        • activate
        • createResellerServed
        • invite
        • list
        • suspend
      • Service
      • Sku
  1. API reference
  2. REST
  3. Customer
  4. list

Billing API, REST: Customer.list

Written by
Yandex Cloud
  • HTTP request
  • Query parameters
  • Response

Retrieves the list of customers associated with the specified reseller.

HTTP request

GET https://billing.api.cloud.yandex.net/billing/v1/customers

Query parameters

Parameter Description
resellerId

Required. ID of the reseller.

The maximum string length in characters is 50.

pageSize

The maximum number of results per page to return. If the number of available results is larger than pageSize, the service returns a nextPageToken that can be used to get the next page of results in subsequent list requests.

The maximum value is 1000.

pageToken

Page token. To get the next page of results, set pageToken to the nextPageToken returned by a previous list request.

The maximum string length in characters is 100.

Response

HTTP Code: 200 - OK

{
  "customers": [
    {
      "id": "string",
      "billingAccountId": "string"
    }
  ],
  "nextPageToken": "string"
}
Field Description
customers[] object

List of customers.

customers[].
id
string

ID of the customer.

customers[].
billingAccountId
string

ID of the BillingAccount assigned to the customer.

nextPageToken string

This token allows you to get the next page of results for list requests. If the number of results is larger than pageSize, use nextPageToken as the value for the pageToken query parameter in the next list request. Each subsequent list request will have its own nextPageToken to continue paging through the results.

Was the article helpful?

Language / Region
Yandex project
© 2023 Intertech Services AG
In this article:
  • HTTP request
  • Query parameters
  • Response