action credas_check_submitted_id_documents { label: "Checks if submitted documents are sufficient to complete registration." provider: credas method: GET path: "/api/registrations/{id}/check-submitted-id-documents" encoding: json input: { type: "object" properties: { apikey: { type: "string" } id: { type: "string" format: "uuid" } } required: ["apikey", "id"] additionalProperties: false } output: { type: "object" properties: { checkCode: { type: "integer" format: "int32" description: "Ok = 1, MayContinue = 2, CannotContinue = 3" enum: [1, 2, 3] } message: { type: "string" } } } }