Contents

SharedBudgetResponse

The response object for a single budget order operation.

Declaration

object SharedBudgetResponse

Properties

NameTypeDescription
resultSharedBudget

The SharedBudget object returned by the operation, reflecting its post-operation state. Absent if an error occurred. See SharedBudget. Read-only.

errorError

Error details if the operation failed. Absent on success. Read-only.

Discussion

Create, update, and get-by-ID budget order operations return SharedBudgetResponse as the single-item response envelope.

Example

{
  "result": {
    "id": 777888999,
    "orgId": 100456789,
    "name": "AwayFinder - Q1 2025 Budget",
    "startTime": "2025-01-01T00:00:00.000",
    "endTime": "2025-03-31T23:59:59.000",
    "value": {
      "amount": "10000.00",
      "currency": "USD"
    },
    "adAccountIds": [
      123456789
    ],
    "systemStatus": "ACTIVE",
    "systemStatusReasons": [],
    "invoiceDetail": {
      "primaryBuyerName": "Jane Smith",
      "primaryBuyerEmail": "jane.smith@awayfinder.com",
      "billingEmail": "billing@awayfinder.com"
    },
    "deleted": false,
    "creationTime": "2025-01-01T00:00:00.000",
    "modificationTime": "2025-01-01T00:00:00.000"
  }
}

See Also