Skip to content

Invoice Profiles

José Ignacio Amelivia Santiago edited this page May 27, 2021 · 1 revision

List all invoice profiles

List all invoice profiles reference on the official TravelPerk documentation.

This function will return a list of all invoice profiles.

# Retrieve all invoice proflies without pagination
invoices = travelperk.expenses().invoice_profiles().query().get()

#Retrieve an invoices paginated response
invoices = travelperk.expenses().invoice_profiles().query().set_offset(
    20
).set_limit(
    30
).get()