# This is an automatically generated code sample.
# To make this code sample work in your Oracle Cloud tenancy,
# please replace the values for any parameters whose current values do not fit
# your use case (such as resource IDs, strings containing ‘EXAMPLE’ or ‘unique_id’, and
# boolean, number, and enum parameters with values not fitting your use case).

from datetime import datetime
import oci

# Create a default config using DEFAULT profile in default location
# Refer to
# https://docs.cloud.oracle.com/en-us/iaas/Content/API/Concepts/sdkconfig.htm#SDK_and_CLI_Configuration_File
# for more info
config = oci.config.from_file()


# Initialize service client with default config file
osp_gateway_client = oci.osp_gateway.InvoiceServiceClient(config)


# Send the request to service, some parameters are not required, see API
# doc for more info
list_invoices_response = osp_gateway_client.list_invoices(
    osp_home_region="EXAMPLE-ospHomeRegion-Value",
    compartment_id="ocid1.test.oc1..<unique_ID>EXAMPLE-compartmentId-Value",
    opc_request_id="HDGO0GNAQD0MN7QZLULU<unique_ID>",
    invoice_id="ocid1.test.oc1..<unique_ID>EXAMPLE-invoiceId-Value",
    type=["EDUCATION"],
    search_text="EXAMPLE-searchText-Value",
    time_invoice_start=datetime.strptime(
        "2022-03-05T01:47:29.887Z",
        "%Y-%m-%dT%H:%M:%S.%fZ"),
    time_invoice_end=datetime.strptime(
        "2037-09-15T05:29:06.173Z",
        "%Y-%m-%dT%H:%M:%S.%fZ"),
    time_payment_start=datetime.strptime(
        "2044-12-28T17:40:52.119Z",
        "%Y-%m-%dT%H:%M:%S.%fZ"),
    time_payment_end=datetime.strptime(
        "2005-07-29T05:40:07.074Z",
        "%Y-%m-%dT%H:%M:%S.%fZ"),
    status=["PAYMENT_SUBMITTED"],
    page="EXAMPLE-page-Value",
    limit=469,
    sort_by="TOTAL_AMOUNT",
    sort_order="DESC")

# Get the data from response
print(list_invoices_response.data)

Was this article helpful?