Create a ZelfProof
Last updated
Last updated
https://api.zelf.world/api/zelf-proof/encrypt
This endpoint allows the creation of a new ZelfProof as raw bytes encoded in base64. These are the same bytes used to generate the ZelfQR code.
Endpoint: /api/zelf-proof/encrypt
Method: POST
Content-Type: application/json
The request body should be a JSON object containing the following fields:
livenessDetectionPriorCreation: Boolean
(Optional) - If true, the face must be live to create the ZelfProof.
publicData: object
(Optional) - Cleartext data associated with the record, such as masked_id
.
faceBase64: string
(Required) - Base64 encoded face image data.
livenessLevel: string
(Optional) - Specifies the tolerance for face liveness checks. E.g., "REGULAR"
.
metadata: object
(Optional) - Additional metadata in JSON format associated with the ZelfProof.
os: string
(Optional) - The operating system where the request originates, e.g., "DESKTOP"
.
password: string
(Optional) - A password for additional security.
identifier: string
(Optional) - An ID associated with the record.
referenceFaceBase64: string
(Optional) - Base64 encoded reference face image. Used for matching with the faceBase64
.
requireLiveness: Boolean
(Optional) - If true, the face must be live.
tolerance: string
(Optional) - Specifies the tolerance for face matching. E.g., "REGULAR"
.
verifierKey: string
(Optional) - An authentication key required for decrypting the ZelfProof if specified.
Here are some specific error codes that might be returned:
ERR_INVALID_IMAGE: Invalid base64 string for the face image.
ERR_NO_FACE_DETECTED: No face detected in the image.
ERR_MULTIPLE_FACES_DETECTED: Multiple faces detected in the image.
ERR_REF_FACE_NOT_MATCHED: Reference face does not match the input face.
ERR_LIVENESS_FAILED: Liveness check failed for the input face.
ERR_LIVENESS_FACE_ANGLE_TOO_LARGE: The face angle is too large, making liveness check impossible.
ERR_LIVENESS_FACE_IS_OCCLUDED: The face is occluded (e.g., by a mask).
ERR_LIVENESS_FACE_CLOSE_TO_BORDER: The face is too close to the border of the image.
ERR_LIVENESS_FACE_TOO_SMALL: The face is too small in the image.
ERR_LIVENESS_EYES_CLOSED: The eyes are closed in the image.
Q: What happens if someone else tries to generate a ZelfProof using my face?
A: Zelf ensures that each ZelfProof is unique and tied to the specific conditions (metadata, password) provided at the time of creation. Without the exact same inputs, a different ZelfProof will be generated, preventing unauthorized access. That without considering that we require a liveness detection on the encryption as one of the params of our SDK/API function.
Q: Can the ZelfProof be used across different wallets/platforms?
A: Yes, a ZelfProof can be used across various platforms for authentication, encryption, and verification purposes. The integration is seamless and designed to work in diverse environments.