action apacta_get_companies_company_id_integration_settings_companies_integrat { label: "Get a company integration setting" provider: apacta method: GET path: "/companies/{company_id}/integration_settings/{companies_integration_setting_id}" encoding: json input: { type: "object" properties: { companies_integration_setting_id: { type: "string" } company_id: { type: "string" } } required: ["companies_integration_setting_id", "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_setting_id: { type: "string" format: "uuid" } modified: { type: "string" format: "dateTime" } value: { type: "string" } } } success: { type: "boolean" } } } }