action owler_get_v1_company_id_company_id { label: "Get Company by Id" description: "The Company Data API provides complete information about a company for the specified Company Id " provider: owler method: GET path: "/v1/company/id/{companyId}" encoding: json input: { type: "object" properties: { companyId: { type: "string" } format: { type: "string" } } required: ["companyId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }