/signup with user details

Create new account for user using face and user details.

Base URL

sdk.faceki.com

Signup End Point API

https://sdk.faceki.com/facelink/api/signup

This API is used to register a new user under a particular client, you should use this API along with your existing signup flow whereupon getting user info you can pass that info into the request and followed by the live image capturing, with all this data make a post-form-data request to register a new user. Make sure the image captured is a live face image as the system will not bypass any fake image like in photos on mobile, paper, masking, etc.

Method: POST

Authorization: Bearer Token

Parameter:

selfie_image (Image File) (*Mandatory)

email (optional)

firstName (optional)

lastName (optional)

phoneNumber (optional)

Image data is the file type of PNG, JPEG, PNG

POST https://sdk.faceki.com/facelink/api/signup

Headers

NameTypeDescription

Content-Type:*

String

multipart/form-data

authorization:*

String

Bearer [token]

Request Body

NameTypeDescription

selfie_image*

File

email

String

firstName

String

lastName

String

phoneNumber

String

```json
{
    "responseCode": 0,
    "data": {
        "user": {
            "userId": "e610116e-f7e4-48bd-889c-bbf4ccf97f34",
            "companyId": "d2504fcc-a1bd-4f4c-9874-dec3706123b4",
            "userType": "Member",
            "email": "email@gmail.com",
            "language": "",
            "roleID": "Admin",
            "status": "ACTIVE",
            "blockStatus": "UNBLOCKED",
            "selfieImage": "https://faceki-kyc-images.s3.amazonaws.com/faces/6144029000000.jpeg",
            "faceID": "a5383cb2-a464-432d-916b-bb16dee9fcd4",
            "imageID": "117a3ce7-6b6c-346d-aa28-71afe66a2d98",
            "_id": "644d8b6e25a170b4ab83fa10",
            "createdAt": "2023-04-29T21:26:06.464Z",
            "updatedAt": "2023-04-29T21:26:06.464Z",
            "__v": 0
        },
        "face_id": "a5383cb2-a464-432d-916b-bb16dee9fcd4",
        "image_id": "117a3ce7-6b6c-346d-aa28-71afe66a2d98",
        "packageInfo": {},
        "message": "Face signup success!"
    }
}
```

Response Parameters

Confidence: *Consider any value above 90 as success.

face_id: *This is a unique identifier for each face, you can keep this to retrieve user information in your DB while Sign up you can store and use here to retrieve information, each face can have multiple images ID's.

client_id: Can verify with your client id for authenticity.

mobile_number: User mobile number.

_id: Faceki user-id.

image_id: Unique image id.

Email: User email.

Name: User name.

Last updated