<!--
{
  "availability" : [
    "Apple Ads Platform API: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "Apple-Ads-Platform-API",
  "identifier" : "/documentation/Apple-Ads-Platform-API/SharedBudgetQueryResponse",
  "metadataVersion" : "0.1.0",
  "role" : "Object",
  "symbol" : {
    "kind" : "Object",
    "modules" : [
      "Apple Ads Platform API"
    ],
    "preciseIdentifier" : "data:apple-ads-platform-api:SharedBudgetQueryResponse"
  },
  "title" : "SharedBudgetQueryResponse"
}
-->

# SharedBudgetQueryResponse

The response object for a budget order query.

```
object SharedBudgetQueryResponse
```

## Discussion

The budget order query endpoint returns `SharedBudgetQueryResponse`, which contains the filtered, sorted, and paginated set of `SharedBudget` objects matching the request. The `result` array holds the matching records. To scope results by ad account ID, status, or specific budget IDs, use the `QueryRequest` body with `filters`.

> Note: The underlying implementation is the generic `QueryResponse<SharedBudget>` envelope. This documentation uses the type name `SharedBudgetQueryResponse` for clarity.

### Example

```json
{
  "result": [
    {
      "id": 777890001,
      "name": "AwayFinder - Q3 2025 Budget",
      "startTime": "2025-07-01T00:00:00.000",
      "endTime": "2025-09-30T23:59:59.000",
      "value": {
        "amount": "20000.00",
        "currency": "USD"
      },
      "adAccountIds": [
        123456789
      ],
      "orgId": 555666777,
      "systemStatus": "ACTIVE",
      "systemStatusReasons": [],
      "invoiceDetail": {
        "primaryBuyerName": "Jordan Lee",
        "primaryBuyerEmail": "jordan.lee@awayfinder.com",
        "billingEmail": "billing@awayfinder.com",
        "clientName": "AwayFinder Inc.",
        "orderNumber": "PO-2025-Q3"
      },
      "creationTime": "2025-06-01T10:00:00.000",
      "modificationTime": "2025-06-01T10:00:00.000",
      "deleted": false
    }
  ],
  "pagination": {
    "pageSize": 20,
    "offset": 0,
    "totalCount": 1
  }
}
```

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)