action credas_override_check_status { label: "Sets an override for a specific check on the registration." provider: credas method: PUT path: "/api/registrations/{id}/override-check-status" encoding: json input: { type: "object" properties: { apikey: { type: "string" } checkType: { type: "integer" format: "int32" description: "IdDocuments = 1, StandardChecks = 2, InternationalSanctionsAndPep = 3, CreditStatusCheck = 4, BankAccountCheck = 5, ProofOfOwnership = 6, RightToWork = 7, RightToRent = 8" enum: [0, 1, 2, 3, 4, 5, 6, 7, 8] } comment: { type: "string" } id: { type: "string" format: "uuid" } status: { type: "integer" format: "int32" description: "Unknown = 0, Pass = 1, Refer = 2, Fail = 3" enum: [0, 1, 2, 3] } } required: ["apikey", "checkType", "comment", "id", "status"] additionalProperties: false } output: { type: "object" additionalProperties: true } }