> ## Documentation Index
> Fetch the complete documentation index at: https://docs.interchange.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get inherited billing stub

> Read the bounded organization-managed billing signal for a child account

`GET /api/v2/billing/account/inherited-stub`

Returns the minimal fact that a child account's billing is managed by its
parent organization. This read is for a directly backed human member of the
current child account who does not have an applicable `VIEW` delegation. It
takes no customer or organization parameter: the child and parent are resolved
from the authenticated account's real topology.

The response contains only the organization's display name, the exact `ORG`
scope boundary, and its customer pointer. It never includes the organization
document, accounts, members, contracts, rates, standing, payment details, or
advertisers. Organization administrators continue to use
[`GET /billing/account`](/v2/buyer/billing/tasks/get-billing-account) for the
full document. `VIEW` remains reserved for its existing account slice; retired
`OWN` grants no authority and does not block a genuine member's stub fallback.

Advertiser-scoped people and credentials, sponsored-buyer compatibility
tenancy, API keys, Agents, workloads, service tokens, parent or standalone
members, and missing or inconsistent parent topology are denied.

## Request

```bash curl theme={null}
curl "https://api.interchange.io/api/v2/billing/account/inherited-stub" \
  -H "Authorization: Bearer $SCOPE3_USER_TOKEN"
```

## Parameters

This endpoint takes no parameters.

## Response

A successful response uses the standard API envelope. Read all three
projection fields from `data`.

```json theme={null}
{
  "data": {
    "organization": {
      "name": "Blue Peak Holdings"
    },
    "scope": {
      "boundary": "ORG"
    },
    "managedBy": {
      "customerId": 100
    }
  },
  "error": null
}
```

## Errors

* `401 UNAUTHORIZED` — authentication is missing.
* `403 ACCESS_DENIED` — the current principal, membership, delegation, or
  topology is not eligible for this bounded child-account read.
