action credas_get_registration_supported_id_documents { label: "Get a list of supported id document for the specified registration id." provider: credas method: GET path: "/api/registrations/{id}/supported-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: { name: { type: "string" } type: { type: "integer" format: "int32" description: "Passport = 1, DrivingLicence = 2, NationalIdCard = 3, CscsCard = 4, ResidencePermit = 5, Visa = 6, BirthCertificate = 7, HomeOfficeLetter = 8, Other = 9" enum: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] } } } }