Paycc Customer
Paycc Customer Kyc.
Paycc APIs
Customer Generate Url
API | Description |
---|---|
Generate Url | Use this API to generate url |
Paycc
Postman Collection
URL
POST : /v1/service/paycc/init/kycHeaders
Content-Type (String) required
application/json
application/json
Authorization (String) required
Basic Auth
Basic Auth
Accept (String) required
application/json
application/json
Body Params
merchantCode (String) Required
Merchant unique Code(You will get merchantCode from Merchant Onboarding API) (Max Length: 20)
Merchant unique Code(You will get merchantCode from Merchant Onboarding API) (Max Length: 20)
mobile (String) Required
mobile (Max Length: 10)
mobile (Max Length: 10)
email (String) Required
email (Max Length: 200)
email (Max Length: 200)
name (String) Required
name (Max Length: 200)
name (Max Length: 200)
pan (String) Required
pan (Max Length: 11)
pan (Max Length: 11)
Request
Example Request
curl --location '/v1/service/paycc/init/kyc' \
--header 'Content-Type: application/json' \
--header 'Authorization: Basic Og==' \
--data '{
"pan" : "ENGPXXXXX",
"name" : "XXXXXX",
"email" : "kuxxxxx@xxxxx.com",
"mobile" : "63937XXXXX",
"merchantCode" : "MID693XXXXXX"
}'
Response Samples
- SUCCESS
- FAILED
{
"code": "0x0200",
"message": "Request Init",
"status": "SUCCESS",
"data": {
"url": "https://app.digio.in/#/gateway/XXXXXX",
"kid": "KID240826212813188LXXXXXXXX"
}
}
{
"code": "0x0202",
"status": "FAILURE",
"message": "Some error"
}
Response Code
Status Code | Status | Message |
---|---|---|
0x0200 | SUCCESS | TRANSACTION SUCCESSFULL |
0x0201 | UNAUTHORIZED | UNAUTHORIZED USER |
0x0202 | FAILURE | FAILURE USER |
0x0203 | MISSING_PARAMETER | MISSING PARAMETER |
0x0204 | CONNECTION_TIMEOUT | CONNECTION TIMEOUT |
0x0205 | SOMETHING_WENT_WRONG | SOMETHING WENT WRONG |
0x0206 | PENDING | TRANSACTION PENDING |
0x0207 | REVERSED | TRANSACTION REVERSED |
0x0209 | REDIRECT | REDIRECT URL |