action apideck_profit_and_loss_one { label: "Get Profit and Loss" description: "Get Profit and Loss" provider: apideck method: GET path: "/accounting/profit-and-loss" encoding: json input: { type: "object" properties: { fields: { type: "string" } filter: { type: "object" properties: { customer_id: { type: "string" description: "Filter by customer id" } end_date: { type: "string" description: "Filter by end date. If end date is given, start date is required." } start_date: { type: "string" description: "Filter by start date. If start date is given, end date is required." } } additionalProperties: false } pass_through: { type: "object" properties: { example_downstream_property: { type: "string" description: "All passthrough query parameters are passed along to the connector as is (?pass_through[search]=leads becomes ?search=leads)" } } } raw: { type: "boolean" } "x-apideck-app-id": { type: "string" } "x-apideck-consumer-id": { type: "string" } "x-apideck-service-id": { type: "string" } } required: ["x-apideck-app-id", "x-apideck-consumer-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }