action apacta_get_companies_company_id_integration_feature_settings_integratio { label: "Show details of 1 integration feature setting" provider: apacta method: GET path: "/companies/{company_id}/integration_feature_settings/{integration_feature_setting_id}" encoding: json input: { type: "object" properties: { company_id: { type: "string" } integration_feature_setting_id: { type: "string" } } required: ["company_id", "integration_feature_setting_id"] additionalProperties: false } output: { type: "object" properties: { data: { 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" } } } success: { type: "boolean" } } } }