action biapi_get_invoicing { label: "Get invoicing data for a given period (default is the current month)." description: "You can get all the invoicing data or just specific ones by using the available parameters.

If no parameters are specified, no invoicing data is returned.

" provider: biapi method: GET path: "/invoicing" encoding: json input: { type: "object" properties: { accounts_synced: { type: "string" } all: { type: "string" } connections_account: { type: "string" } connections_synced: { type: "string" } detail: { type: "string" } max_date: { type: "string" format: "date" } min_date: { type: "string" format: "date" } payments_synced: { type: "string" } subscriptions_synced: { type: "string" } transfers_synced: { type: "string" } users_bank: { type: "string" } users_bill: { type: "string" } users_synced: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }