action apacta_get_time_entry_rates_time_entry_rate_id { label: "View time entry rate" provider: apacta method: GET path: "/time_entry_rates/{time_entry_rate_id}" encoding: json input: { type: "object" properties: { time_entry_rate_id: { type: "string" format: "uuid" } } required: ["time_entry_rate_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { amount: { type: "number" format: "float" } company_id: { type: "string" format: "uuid" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } currency_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } modified_by_id: { type: "string" format: "uuid" } selling_amount: { type: "number" format: "float" } time_entry_type_id: { type: "string" format: "uuid" } } } success: { type: "boolean" } } } }