action apacta_get_expenses_expense_id { label: "Show expense" provider: apacta method: GET path: "/expenses/{expense_id}" encoding: json input: { type: "object" properties: { expense_id: { type: "string" } } required: ["expense_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { activity_id: { type: "string" format: "uuid" } comment: { type: "string" } company_id: { type: "string" format: "uuid" description: "Read-only" } contact_id: { type: "string" format: "uuid" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" description: "Read-only" } currency_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } delivery_date: { type: "string" format: "date" } description: { type: "string" } due_date: { type: "string" format: "date" } file_reference: { type: "string" } id: { type: "string" format: "uuid" description: "Read-only" } is_imported: { type: "string" } modified: { type: "string" format: "dateTime" } order_number: { type: "string" } project_id: { type: "string" format: "uuid" } readsoft_id: { type: "string" } reference: { type: "string" } roger_id: { type: "string" format: "uuid" } sent_to_email: { type: "string" } short_text: { type: "string" } status: { type: "string" } supplier_invoice_number: { type: "string" } total_buying_price: { type: "number" format: "float" description: "Sum of all `buying_price` from expense lines" } total_selling_price: { type: "number" format: "float" description: "Sum of all `selling_price` from expense lines" } } } success: { type: "boolean" } } } }