action naviplancentral_expenses_get_by_id { label: "Expenses_GetById" description: "Description: This operation retrieves a single Expense for the specified Expense ID.
\n Purpose: Provides access to the Expense including description and Expense type." provider: naviplancentral method: GET path: "/api/Expenses/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }