action credas_get_company { label: "GetCompany" provider: credas method: GET path: "/api/companies/{companyId}" encoding: json input: { type: "object" properties: { apikey: { type: "string" } companyId: { type: "string" format: "uuid" } } required: ["apikey", "companyId"] additionalProperties: false } output: { type: "object" properties: { addressLine1: { type: "string" } companyName: { type: "string" } companyNumber: { type: "string" } dateOfRegistration: { type: "string" format: "date-time" } duplicate: { type: "boolean" } id: { type: "string" format: "uuid" } locality: { type: "string" } postCode: { type: "string" } region: { type: "string" } significantParentCompanies: { type: "array" items: { type: "object" additionalProperties: true } } significantPeople: { type: "array" items: { type: "object" properties: { forename: { type: "string" } id: { type: "string" format: "uuid" } regEntryId: { type: "string" format: "uuid" } surname: { type: "string" } } } } } } }