action credas_get_property_register_check_result { label: "Retrieves property registry check associated with the registration." provider: credas method: GET path: "/api/property-register/{id}" encoding: json input: { type: "object" properties: { apikey: { type: "string" } id: { type: "string" format: "uuid" } } required: ["apikey", "id"] additionalProperties: false } output: { type: "object" properties: { checkStatus: { type: "integer" format: "int32" description: "Unknown = 0, Pass = 1, Refer = 2, Fail = 3" enum: [0, 1, 2, 3] } hasBeenOverridden: { type: "boolean" } matchResult: { type: "integer" format: "int32" description: "Unknown = 0, FullNameMatch = 1, SurnameMatch = 2, NoNameMatch = 3, NoAddressMatch = 4, TitleNotRegistered = 5, Unavailable = 6, OutOfHours = 7" enum: [0, 1, 2, 3, 4, 5, 6, 7] } matchResultText: { type: "string" } propertyOwnership: { type: "integer" format: "int32" description: "Unknown = 0, SoleOwnership = 1, JointOwnership = 2" enum: [0, 1, 2] } propertyOwnershipText: { type: "string" } titleNumber: { type: "string" } } } }