Billing API, REST: BillingAccount.listBillableObjectBindings
Retrieves the list of billable object bindings associated with the specified billing account.
HTTP request
GET https://billing.api.il.nebius.cloud/billing/v1/billingAccounts/{billingAccountId}/billableObjectBindings
Path parameters
Parameter | Description |
---|---|
billingAccountId | Required. ID of the billing account to list associated billable object bindings. To get the billing account ID, use list request. The maximum string length in characters is 50. |
Query parameters
Parameter | Description |
---|---|
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
{
"billableObjectBindings": [
{
"effectiveTime": "string",
"billableObject": {
"id": "string",
"type": "string"
}
}
],
"nextPageToken": "string"
}
Field | Description |
---|---|
billableObjectBindings[] | object List of billable object bindings. |
billableObjectBindings[]. effectiveTime |
string (date-time) Timestamp when binding was created. String in RFC3339 text format. The range of possible values is from To work with values in this field, use the APIs described in the Protocol Buffers reference. In some languages, built-in datetime utilities do not support nanosecond precision (9 digits). |
billableObjectBindings[]. billableObject |
object Object that is bound to billing account. Represents a link to an object in other service. This object is being billed in the scope of a billing account. |
billableObjectBindings[]. billableObject. id |
string ID of the object in other service. |
billableObjectBindings[]. billableObject. type |
string Billable object type. Can be one of the following:
|
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. |