action credas_add_selfie_image { label: "Add a selfie image to the registration." provider: credas method: POST path: "/api/images/selfie" encoding: json input: { type: "object" properties: { apikey: { type: "string" } imageData: { type: "string" } registrationId: { type: "string" format: "uuid" } } required: ["apikey", "imageData", "registrationId"] additionalProperties: false } output: { type: "object" required: ["livenessConfirmed"] properties: { livenessConfirmed: { type: "boolean" } } } }