action apacta_get_companies_company_id_integration_feature_settings { label: "Get a list of integration feature settings" provider: apacta method: GET path: "/companies/{company_id}/integration_feature_settings" encoding: json input: { type: "object" properties: { company_id: { type: "string" } } required: ["company_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" properties: { created: { type: "string" format: "dateTime" } created_by_id: { type: "string" format: "uuid" } default_value: { type: "string" } deleted: { type: "string" format: "dateTime" description: "Only present if it's a deleted object" } description: { type: "string" } id: { type: "string" format: "uuid" } identifier: { type: "string" } integration_feature_id: { type: "string" format: "uuid" } is_custom_setting: { type: "boolean" } modified: { type: "string" format: "dateTime" } name: { type: "string" } } } } pagination: { type: "object" properties: { count: { type: "integer" } current_page: { type: "string" } has_next_page: { type: "boolean" } has_prev_page: { type: "boolean" } limit: { type: "integer" } page_count: { type: "string" } } } success: { type: "boolean" } } } }