Skip to content

billingItems

Fetch paginated billing items collection

Arguments

created_at_end · String · YYYY-MM-DD format
created_at_start · String · YYYY-MM-DD format
state · String · (DEPRECATED) Use 'status' field instead with type - [String]
page_size · Int · The number of billing items to return (Max 100)
after · Cursor · Cursor to fetch results after

Returns

[BillingItem!]

Example

query billingItems(
$client_id: ID
$created_at_end: String
$created_at_start: String
$keywords: String
$offerings_only: Boolean
$provider_id: ID
$sort_by: String
$order_by: BillingItemOrderKeys
$state: String
$status: [String]
$user_id: ID
$offset: Int
$page_size: Int
$after: Cursor
) {
billingItems(
client_id: $client_id
created_at_end: $created_at_end
created_at_start: $created_at_start
keywords: $keywords
offerings_only: $offerings_only
provider_id: $provider_id
sort_by: $sort_by
order_by: $order_by
state: $state
status: $status
user_id: $user_id
offset: $offset
page_size: $page_size
after: $after
) {
amount_paid
application_fee_amount
card_source
charge_backs
coupon_code
cpt_codes_super_bills_id
created_at
currency
cursor
deleted_at
failure_reason
gifted_by
gifted_to
id
is_canceled
is_outside_payment
is_recurring
item_position_number
net_payment
next_scheduled_payment_amount
note
offering
offering_coupon
offering_coupon_id
offering_id
original_price
payment_medium
provider
receipt_last_sent_at
recipient
recipient_id
recurring_payment
refund_amount
refund_date
refund_items
requested_payer
requested_payment
requested_payment_id
sender
sender_id
shown_description
shown_note
state
stripe_charge_id
stripe_error
successful_retried_payment
updated_at
user_package_selection
}
}