action apacta_get_companies_company_id_companies_integration_feature_settings { label: "List a company integration feature settings" provider: apacta method: GET path: "/companies/{company_id}/companies_integration_feature_settings" encoding: json input: { type: "object" properties: { company_id: { type: "string" } } required: ["company_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" properties: { company_id: { type: "string" format: "uuid" } 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" } id: { type: "string" format: "uuid" } integration_feature_setting_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } value: { type: "string" } } } success: { type: "boolean" } } } }