Skip to main content
Get available billing profiles for your organization

Arguments

input
required

Fields

items
required
pageInfo
required
query billingProfiles($input: BillingProfilesInput!) {
  billingProfiles(input: $input) {
    items {
      allocations {
        id
        name
        billableType
        allocationType
        feeAmount
        rate
        overrides {
          feeAmount
          rate
        }
        startDate
        endDate
      }
      billingProfileId
      name
      description
      allocationModelId
    }
    pageInfo {
      hasNextPage
      hasPreviousPage
    }
  }
}

Response

Returns a BillingProfileCollection
{
  "data": {
    "billingProfiles": {
      "items": [
        BillingProfile
      ],
      "pageInfo": PageInfo
    }
  }
}
Run in Playground