action apacta_get_users_user_id { label: "View user" provider: apacta method: GET path: "/users/{user_id}" encoding: json input: { type: "object" properties: { user_id: { type: "string" } } required: ["user_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { api_key: { type: "string" format: "uuid" } city_id: { type: "string" format: "uuid" } company_id: { type: "string" format: "uuid" } cost_price: { type: "number" format: "float" description: "Cost of salaries" } created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } email: { type: "string" format: "email" } expected_billable_hours: { type: "number" format: "float" } extra_price: { type: "number" format: "float" description: "Additional cost on this employee (pension, vacation etc.)" } first_name: { type: "string" } full_name: { type: "string" description: "READ-ONLY" } hide_address: { type: "boolean" } hide_phone: { type: "boolean" } id: { type: "string" format: "uuid" } initials: { type: "string" } is_active: { type: "boolean" } language_id: { type: "string" format: "uuid" } last_name: { type: "string" } mobile: { type: "string" } mobile_countrycode: { type: "string" } modified: { type: "string" format: "dateTime" } password: { type: "string" format: "password" } phone: { type: "string" } phone_countrycode: { type: "string" } receive_form_mails: { type: "boolean" description: "If `true` the employee will receive an email receipt of every form submitted" } sale_price: { type: "number" format: "float" description: "The price this employee costs per hour when working" } street_name: { type: "string" } website: { type: "string" } } } success: { type: "boolean" } } } }