# 2 Initialize KYC Request
To Start KYC Cycle , You need To Initialize KYC Request using Token Generated Before. To Initialize KYC Request Follow This APi
post
Authorizations
Body
deviceModelstring | nullableOptionalExample:
Client's mobile device model
iPhone 8 PlusmanufacturerNamestring | nullableOptionalExample:
Client's mobile manufacturer name
Appleimeistring | nullableOptionalExample:
Client's mobile imei
EFF71C0C-2F53-4E1C-85C6-B067889F4805defaultPayLoadobject | nullableOptionalExample:
Organization can add custom json object related to client and received it at call back object
{"key1":"value1", "key2":"value2"}Responses
200
Success
application/json
400
BadRequest
application/json
401
Unauthorized
application/json
404
NotFound
application/json
post
/Onboarding/api/v1/onboarding/KycRequest/InitializeKycRequestPOST /Onboarding/api/v1/onboarding/KycRequest/InitializeKycRequest HTTP/1.1
Host:
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 166
{
"deviceModel": "iPhone 8 Plus",
"manufacturerName": "Apple",
"imei": "EFF71C0C-2F53-4E1C-85C6-B067889F4805",
"defaultPayLoad": "{\"key1\":\"value1\", \"key2\":\"value2\"}"
}{
"requestId": "1700473556670"
}Last updated