POST https://management.azure.com/providers/Microsoft.Billing/billingAccounts/default/billingSubscriptions/00000000-0000-0000-0000-000000000000/downloadDocuments?api-version=2024-04-01
[
{
"documentName": "12345678",
"invoiceName": "E123456789"
},
{
"documentName": "12345678",
"invoiceName": "E987654321"
}
]
import com.azure.resourcemanager.billing.models.DocumentDownloadRequest;
import java.util.Arrays;
/**
* Samples for Invoices DownloadDocumentsByBillingSubscription.
*/
public final class Main {
/*
* x-ms-original-file: specification/billing/resource-manager/Microsoft.Billing/stable/2024-04-01/examples/
* invoicesDownloadDocumentsByBillingSubscription.json
*/
/**
* Sample code: InvoicesDownloadDocumentsByBillingSubscription.
*
* @param manager Entry point to BillingManager.
*/
public static void
invoicesDownloadDocumentsByBillingSubscription(com.azure.resourcemanager.billing.BillingManager manager) {
manager.invoices().downloadDocumentsByBillingSubscription(
Arrays.asList(new DocumentDownloadRequest().withDocumentName("12345678").withInvoiceName("E123456789"),
new DocumentDownloadRequest().withDocumentName("12345678").withInvoiceName("E987654321")),
com.azure.core.util.Context.NONE);
}
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
from azure.identity import DefaultAzureCredential
from azure.mgmt.billing import BillingManagementClient
"""
# PREREQUISITES
pip install azure-identity
pip install azure-mgmt-billing
# USAGE
python invoices_download_documents_by_billing_subscription.py
Before run the sample, please set the values of the client ID, tenant ID and client secret
of the AAD application as environment variables: AZURE_CLIENT_ID, AZURE_TENANT_ID,
AZURE_CLIENT_SECRET. For more info about how to get the value, please see:
https://docs.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal
"""
def main():
client = BillingManagementClient(
credential=DefaultAzureCredential(),
subscription_id="00000000-0000-0000-0000-000000000000",
)
response = client.invoices.begin_download_documents_by_billing_subscription(
parameters=[
{"documentName": "12345678", "invoiceName": "E123456789"},
{"documentName": "12345678", "invoiceName": "E987654321"},
],
).result()
print(response)
# x-ms-original-file: specification/billing/resource-manager/Microsoft.Billing/stable/2024-04-01/examples/invoicesDownloadDocumentsByBillingSubscription.json
if __name__ == "__main__":
main()
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
package armbilling_test
import (
"context"
"log"
"github.com/Azure/azure-sdk-for-go/sdk/azcore/to"
"github.com/Azure/azure-sdk-for-go/sdk/azidentity"
"github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/billing/armbilling"
)
// Generated from example definition: https://github.com/Azure/azure-rest-api-specs/blob/c08ac9813477921ad8295b98ced8f82d11b8f913/specification/billing/resource-manager/Microsoft.Billing/stable/2024-04-01/examples/invoicesDownloadDocumentsByBillingSubscription.json
func ExampleInvoicesClient_BeginDownloadDocumentsByBillingSubscription() {
cred, err := azidentity.NewDefaultAzureCredential(nil)
if err != nil {
log.Fatalf("failed to obtain a credential: %v", err)
}
ctx := context.Background()
clientFactory, err := armbilling.NewClientFactory("<subscription-id>", cred, nil)
if err != nil {
log.Fatalf("failed to create client: %v", err)
}
poller, err := clientFactory.NewInvoicesClient().BeginDownloadDocumentsByBillingSubscription(ctx, []*armbilling.DocumentDownloadRequest{
{
DocumentName: to.Ptr("12345678"),
InvoiceName: to.Ptr("E123456789"),
},
{
DocumentName: to.Ptr("12345678"),
InvoiceName: to.Ptr("E987654321"),
}}, nil)
if err != nil {
log.Fatalf("failed to finish the request: %v", err)
}
res, err := poller.PollUntilDone(ctx, nil)
if err != nil {
log.Fatalf("failed to pull the result: %v", err)
}
// You could use response here. We use blank identifier for just demo purposes.
_ = res
// If the HTTP response code is 200 as defined in example definition, your response structure would look as follows. Please pay attention that all the values in the output are fake values for just demo purposes.
// res.DocumentDownloadResult = armbilling.DocumentDownloadResult{
// ExpiryTime: to.Ptr("2023-02-16T17:32:28Z"),
// URL: to.Ptr("https://myaccount.blob.core.windows.net/invoices/1383724.pdf?sv=2019-02-02&sr=b&sp=r"),
// }
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
const { BillingManagementClient } = require("@azure/arm-billing");
const { DefaultAzureCredential } = require("@azure/identity");
/**
* This sample demonstrates how to Gets a URL to download multiple invoice documents (invoice pdf, tax receipts, credit notes) as a zip file. The operation is supported for billing accounts with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement.
*
* @summary Gets a URL to download multiple invoice documents (invoice pdf, tax receipts, credit notes) as a zip file. The operation is supported for billing accounts with agreement type Microsoft Partner Agreement or Microsoft Customer Agreement.
* x-ms-original-file: specification/billing/resource-manager/Microsoft.Billing/stable/2024-04-01/examples/invoicesDownloadDocumentsByBillingSubscription.json
*/
async function invoicesDownloadDocumentsByBillingSubscription() {
const subscriptionId =
process.env["BILLING_SUBSCRIPTION_ID"] || "00000000-0000-0000-0000-000000000000";
const parameters = [
{ documentName: "12345678", invoiceName: "E123456789" },
{ documentName: "12345678", invoiceName: "E987654321" },
];
const credential = new DefaultAzureCredential();
const client = new BillingManagementClient(credential, subscriptionId);
const result =
await client.invoices.beginDownloadDocumentsByBillingSubscriptionAndWait(parameters);
console.log(result);
}
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue
using Azure;
using Azure.ResourceManager;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Identity;
using Azure.ResourceManager.Billing.Models;
using Azure.ResourceManager.Billing;
// Generated from example definition: specification/billing/resource-manager/Microsoft.Billing/stable/2024-04-01/examples/invoicesDownloadDocumentsByBillingSubscription.json
// this example is just showing the usage of "Invoices_DownloadDocumentsByBillingSubscription" operation, for the dependent resources, they will have to be created separately.
// get your azure access token, for more details of how Azure SDK get your access token, please refer to https://zcusa.951200.xyz/en-us/dotnet/azure/sdk/authentication?tabs=command-line
TokenCredential cred = new DefaultAzureCredential();
// authenticate your client
ArmClient client = new ArmClient(cred);
// this example assumes you already have this TenantResource created on azure
// for more information of creating TenantResource, please refer to the document of TenantResource
var tenantResource = client.GetTenants().GetAllAsync().GetAsyncEnumerator().Current;
// invoke the operation
string subscriptionId = "00000000-0000-0000-0000-000000000000";
IEnumerable<BillingDocumentDownloadRequestContent> arrayOfDocumentDownloadRequest = new BillingDocumentDownloadRequestContent[]
{
new BillingDocumentDownloadRequestContent()
{
DocumentName = "12345678",
InvoiceName = "E123456789",
},new BillingDocumentDownloadRequestContent()
{
DocumentName = "12345678",
InvoiceName = "E987654321",
}
};
ArmOperation<BillingDocumentDownloadResult> lro = await tenantResource.DownloadDocumentsByBillingSubscriptionInvoiceAsync(WaitUntil.Completed, subscriptionId, arrayOfDocumentDownloadRequest);
BillingDocumentDownloadResult result = lro.Value;
Console.WriteLine($"Succeeded: {result}");
To use the Azure SDK library in your project, see this documentation. To provide feedback on this code sample, open a GitHub issue