Skip to main content

transactions_transaction_summary_by_invoices

Creates, updates, deletes, gets or lists a transactions_transaction_summary_by_invoices resource.

Overview

Nametransactions_transaction_summary_by_invoices
TypeResource
Idazure.billing.transactions_transaction_summary_by_invoices

Fields

NameDatatypeDescription
azureCreditAppliednumberThe total amount of any Azure credits applied.
billingCurrencystringThe ISO 4217 code for the currency in which the transactions are billed.
consumptionCommitmentDecrementednumberThe total Microsoft Azure Consumption Commitment (MACC) decrement through the invoice.
subTotalnumberThe total pre-tax charged amount.
taxnumberThe total tax amount applied.
totalnumberThe total charges.

Methods

NameAccessible byRequired ParamsDescription
getSELECTbillingAccountName, invoiceNameGets the transaction summary for an invoice. Transactions include purchases, refunds and Azure usage charges.

SELECT examples

Gets the transaction summary for an invoice. Transactions include purchases, refunds and Azure usage charges.

SELECT
azureCreditApplied,
billingCurrency,
consumptionCommitmentDecremented,
subTotal,
tax,
total
FROM azure.billing.transactions_transaction_summary_by_invoices
WHERE billingAccountName = '{{ billingAccountName }}'
AND invoiceName = '{{ invoiceName }}';