POST api/PersonalDetails
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| FirstName | string | Required. | |
| LastName | string | None. | |
| MiddleName | string | None. | |
| Gender | integer | Required.(1 = Female , 2 = Male , 3 = Transgender) | |
| PermanentAddress | string | Required. | |
| CurrentAddress | string | Required. | |
| State | string | Required. | |
| Pincode | string | Required. (6 digit) | |
| CustLocLatitude | string | None. | |
| CustLocLogitude | string | None. | |
| CustLoginIP | string | None. | |
| DeviceId | string | None. | |
| FatherFirstName | string | Required. | |
| FatherLastName | string | None. | |
| MotherFirstName | string | Required. | |
| MotherLastName | string | None. | |
| MaritalStatus | Int | Required (1 = Married , 2 = Unmarried , 3 = Divorced). | |
| Education | string | Required. |
Request Formats
application/json, text/json
{"ClientId":"102",
"LoanAPPID":"101",
"FirstName":"Rahul",
"MiddleName":"Kumar",
"LastName":"Sharma",
"PermanentAddress":"BH-696 B,EAST SHALIMAR BAGH,POLICE STATION,North West",
"CurrentAddress":"BH-696 B,EAST SHALIMAR BAGH,POLICE STATION,North West",
"Education":"10th",
"Gender":1,
"FatherFirstName": "Mukesh",
"FatherLastName": "sharma",
"MotherFirstName": "Shri",
"MotherLastName": "Devi",
"MaritalStatus": 1,
"State": "Delhi",
"Pincode": "110053",
"CustLocLatitude": "30.35239842",
"CustLocLogitude": "120.23220827",
"CustLoginIP": "36.24.186.29",
"DeviceId": "ffffffff-f6d9-eb73-0000-000047141075",
"BorrowerId" :"133"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Personal Details created successfully"
}
Response Information
POST api/GetPersonalDetails
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerId | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerId": "133"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"FirstName": "Mohan",
"MiddleName": "Lal",
"LastName": "Aggarwal",
"PermanentAddress": "third floor, B-BLOCKFREEDOM FIGHTERS ENCLAVE NEBSARAI, Delhi",
"BorrowerId": "133"
}
POST api/References
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| RelatedPersonName1 | string | Required. | |
| RelatedPersonNumber1 | string | Required. (10 digit) | |
| RelatedPersonName2 | string | Required. | |
| RelatedPersonNumber2 | string | Required. (10 digit) | |
| RelatedPerson1Relation | string | None. | |
| RelatedPerson2Relation | string | None. | |
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"ClientID": 102,
"LoanAPPID": 101,
"RelatedPersonName1": "Mohan",
"RelatedPersonNumber1": "9999999999",
"RelatedPerson1Relation": "Mother",
"RelatedPersonName2": "sohan",
"RelatedPersonNumber2": "9999999999",
"RelatedPerson2Relation": "Sister",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "References updated successfully"
}
POST api/WorkInfo
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| EmploymentStatus | string | Required. | |
| Industry | string | Required. | |
| CompanyName | string | Required. | |
| CompanyContact | string | Required. | |
| CompanyAddress | string | Required. | |
| MonthlyIncome | string | None. | |
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"ClientID": 102,
"LoanAPPID": 101,
"EmploymentStatus": "Self",
"Industry": "IT",
"CompanyName": "ABC",
"CompanyContact": "9999999999",
"CompanyAddress": "XYZ",
"MonthlyIncome": "10000-20000",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Work Info created successfully"
}
Get api/GetProducts
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Products": [
{
"ProductId": 1,
"ProductDesc": "",
"EMI": "₹1,250.00 X 4",
"ProductName": "64 days",
"ProductDuration": "64",
"EMIDuration": "16",
"NumberofEMI": "4",
"LoanAmountList": "1000;2000;5000",
"MaximumLoan": "5000",
"MinimumLoan": "1000"
},
{
"ProductId": 2,
"ProductDesc": "",
"EMI": "₹1,000.00 X 1",
"ProductName": "21 days",
"ProductDuration": "21 ",
"EMIDuration": "1",
"NumberofEMI": "1",
"LoanAmountList": "100;500;1000",
"MaximumLoan": "1000",
"MinimumLoan": "100"
}
]
}
Post api/ApplyLoan
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| ProductId | integer | Required. | |
| LoanPurpose | string | Required. | |
| BeneficiaryId | string | Required. | |
| ApplyAmount | integer | Required. |
Request Formats
application/json, text/json
{
"ClientID":22,
"LoanAPPID":34,
"ProductId": 1,
"BorrowerID" : "mndjfhdkhr6353453",
"LoanPurpose":"Pay bill",
"BeneficiaryId":"ABCD1232436",
"ApplyAmount":5000
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"LoanAmount": "₹5,000",
"DisbursedAmount": "₹4,262",
"TotalInterest": "₹320",
"TotalEmI": "4",
"EMIAmount": "₹1,330",
"ProductDuration": "64",
"AnnualizedInterestRate": "36% p.a",
"AnnualPercentageRate": "%",
"ProcessingFee": "₹500",
"LoanDocumentSingingFee": "₹25",
"RiskAssessmentFee": "₹100",
"GST": "₹113",
"TotalRepaymentAmount": "₹5,320"
}
Post api/RepaymentSchedule
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ClientID":22,
"LoanAPPID":34,
"ApplicationNo":"5521A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"FullRepaymentAmount":"₹5,320
"RepaymentSchedules": [
{
"Emi": "1",
"Principal": "₹1,250",
"Interest": "₹80",
"EMIDate": "27-Dec-2022",
"EMIAmount": "₹1,330"
},
{
"Emi": "2",
"Principal": "₹1,250",
"Interest": "₹80",
"EMIDate": "12-Jan-2023",
"EMIAmount": "₹1,330"
},
{
"Emi": "3",
"Principal": "₹1,250",
"Interest": "₹80",
"EMIDate": "28-Jan-2023",
"EMIAmount": "₹1,330"
},
{
"Emi": "4",
"Principal": "₹1,250",
"Interest": "₹80",
"EMIDate": "13-Feb-2023",
"EMIAmount": "₹1,330"
}
]
}
Post api/RepayLoan
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ClientID":22,
"LoanAPPID":34,
"ApplicationNo":"5521A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"LoanAmount": "₹5,000",
"ProductDuration": "64",
"TotalRepaymentAmount": "₹5,320",
"PendingEmi": "4"
}
Post api/RepayLoanDetails
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ClientID":22,
"LoanAPPID":34,
"ApplicationNo":"5521A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"RepaymentDetails": [
{
"Emi": "1",
"EMIAmount": "₹1,330",
"OverdueInterest": "₹35",
"AmountPayable": "₹1,530",
"EMIDate": "27-Dec-2022",
"TransactionType": "Paid",
"Penalty": "₹165"
},
{
"Emi": "2",
"EMIAmount": "₹1,330",
"OverdueInterest": "₹84",
"AmountPayable": "₹1,811",
"EMIDate": "12-Jan-2023",
"TransactionType": "Paid",
"Penalty": "₹397"
},
{
"Emi": "3",
"EMIAmount": "₹1,330",
"OverdueInterest": "₹109",
"AmountPayable": "₹1,952",
"EMIDate": "28-Jan-2023",
"TransactionType": "Paid",
"Penalty": "₹513"
},
{
"Emi": "4",
"EMIAmount": "₹1,330",
"OverdueInterest": "₹89",
"AmountPayable": "₹1,838",
"EMIDate": "13-Feb-2023",
"TransactionType": "Paid",
"Penalty": "₹419"
}
]
}
Post api/CancelLoan
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ClientID":22,
"LoanAPPID":34,
"ApplicationNo":"5521A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Success",
"ApplicationNo": "A6B30EDF82FA45F0936DC889FBE8BAA3",
"DisbursementDate": "14-Dec-2022",
"DisbursedAmount": "₹828.00",
"ProcessingFee": "₹1.56",
"RiskAssessmentFee": "₹0.31",
"LoanDocumentSigningFee": "₹0.39",
"InterestRecovery": "₹1.00",
"GST": "₹0.41",
"RepaymentAmount": "₹832"
}
{
"Code": 2,
"Status": "Failed",
"Message": "Pay Emi",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"DisbursementDate": null,
"DisbursedAmount": null,
"ProcessingFee": null,
"RiskAssessmentFee": null,
"LoanDocumentSigningFee": null,
"InterestRecovery": null,
"GST": null,
"RepaymentAmount": null
}
POST api/LoanDis
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | string | Required. | |
| ApplicationNo | string | Required. | |
| LoanAmount | decimal number | Required. | |
| TenureDays | int | Required. | |
| DueDate | Date("yyyy-MM-dd") | Required. | |
| EMINumber | Int | Required. | |
| EMIAmt | decimal number | Required. | |
| AnnualRateOfInterest | decimal number | Required. | |
| InterestType | string | Required. | |
| InterestAmount | decimal number | Required. | |
| DisbursementAmt | decimal number | Required. | |
| ProcessingFee | decimal number | Required. | |
| SanctionLetterURL | string | Required. | |
| AgreementURL | string | Required. | |
| BeneficiaryId | string | Required. | |
| PlatformFee1 | decimal number | None. | |
| PlatformFee2 | decimal number | None. | |
| PlatformFee3 | decimal number | None. | |
| PlatformFee4 | decimal number | None. | |
| PlatformFee5 | decimal number | None. | |
| LoanSanctionDate | Date("yyyy-MM-dd") | Required. |
Request Formats
application/json, text/json
{
"OrderID": "1000001",
"ApplicationNo": "AAHK27927923",
"LoanAmount": 3000,
"TenureDays": 7,
"DueDate": "2021-09-14",
"EMINumber":1,
"EMIAmt":3020.00,
"AnnualRateOfInterest":0.3578,
"InterestType":"Fixed",
"InterestAmount":20.0000,
"DisbursementAmt":2400.00,
"ProcessingFee":600.00,
"PlatformFee1":0.00,
"PlatformFee2":0.00,
"PlatformFee3":0.00,
"PlatformFee4":0.00,
"PlatformFee5":0.00,
"SanctionLetterURL": "Filename.pdf",
"AgreementURL": "Filename.pdf",
"BeneficiaryId": "BeneIdABC12314",
"LoanSanctionDate": "2021-09-14"
}
Response Formats
application/json, text/json
{
"Code":"1",
"Status":"Success",
"Message":"Record Created",
"DISBURSEMENT_ID": "DISB00128021",
"PAYMENT_RUN_DATE": "2020-07-24",
"TRANSACTION_UTR_NO": "A1000001",
"CUSTOMER_UNIQUE_NO": "KZTX5SGL7FN8I1POH66C",
"STATUS_CODE": "SUCCESS",
"STATUS_DESCRIPTION": "Credited to beneficiary NA on 14-02-2019 15:10:01",
"TRANSACTION_VALUE_DATE": "2020-07-24",
"ProcessingFeeInvoiceFile": "ProcessInvoiceFile.pdf",
"PlatformFeeInvoiceFile": "PlatformInvoiceFile.pdf"
}
POST api/LoanDisStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| DisbRefID | string | Required. |
Request Formats
application/json, text/json
{
"DisbRefID": "ABCD9890001"
}
Response Formats
application/json, text/json
{
"Code":"1",
"Status":"Success",
"DISBURSEMENT_ID": "ABCD9890001",
"PAYMENT_RUN_DATE": "2020-07-24",
"TRANSACTION_UTR_NO": "A1000001",
"CUSTOMER_UNIQUE_NO": "KZTX5SGL7FN8I1POH66C",
"STATUS_CODE": "SUCCESS",
"STATUS_DESCRIPTION": "Credited to beneficiary NA on 14-02-2019 15:10:01",
"TRANSACTION_VALUE_DATE": "2020-07-24"
}
POST api/Repayment
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | string | Required. | |
| ApplicationNo | string | Required. | |
| APPID | Int | Required. | |
| ClientID | Int | Required. | |
| RepaymentAmt | decimal number | Required. | |
| RepaymentDate | Date("yyyy-MM-dd") | Required. | |
| LinkExpireDate | Date("yyyy-MM-ddTHH:mm:ssZ") ISO 8601 time format. | Required. | |
| ReturnUrl | string | Required. |
Request Formats
application/json, text/json
{
"OrderID": "sampleg 1",
"ApplicationNo": "AAHK27927923",
"ClientID": 22,
"APPID": 71,
"RepaymentDate": "2021-09-14",
"RepaymentAmt": 3020.00,
"LinkExpireDate": "2021-07-29T03:30:00Z",
"ReturnUrl": "https://b8af79f41056.eu.ngrok.io?order_id={order_id}&order_token={order_token}"
}
Response Formats
application/json, text/json
{
"Code":1,
"Status":"Success",
"ColRefId":"E42F6DEEE4EDCBCC3D3",
"Message":"Record Created",
"PaymentLink":"https://xxxxxxxxxx.com/order/#3W74MiZdAtNApya1LfPB"
}
POST api/LoanStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | string | Required. | |
| ApplicationNo | string | Required. | |
| LoanCloseStatus | Int(1=Good,2=Bad,3=Setttled) | Required. | |
| LoanClosureDate | Date("yyyy-MM-dd") | Required. |
Request Formats
application/json, text/json
{
"OrderID": "sampleg 1",
"ApplicationNo": "89C62BEC0A564EFAAB8F98BB32B028FE",
"LoanCloseStatus": 1,
"LoanClosureDate": "2021-01-01"
}
Response Formats
application/json, text/json
{
"Code":"1",
"Status":"Success",
"Message":"Record Created",
"NoDueCertificate": "File.pdf",
"InterestInvoice": "File.pdf",
"OverDueInvoice": "File.pdf"
}
POST api/GetRepaymentStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ColRefId | string | Required. |
Request Formats
application/json, text/json
{
"ColRefId": "E42F6DEEE4EDCBCC3D3"
}
Response Formats
application/json, text/json
case 1.
{
"created_at":"2021-10-03T20:38:49+05:30",
"customer_details":
{
"customer_id":"AAHK27927923",
"customer_email":"vikesh@email.com",
"customer_phone":"9898989898"
},
"order_amount":3020.0,
"order_currency":"INR",
"order_expiry_time":"2021-10-10T05:30:00+05:30",
"order_id":"E42F6DE6E4EDCBCC3D3",
"order_status":"ACTIVE",
"payment_link":"https://XXXXXXX.com/order/#3W74MiZdAtNApya1LfPB"
}
case 2.
{
"cf_payment_id":1100338,
"order_id":"E42F6DEEE4EDCBCC3D3",
"entity":"payment",
"payment_currency":"INR",
"payment_amount":3020.0,
"payment_time":"2021-10-04T02:22:10+05:30",
"payment_status":"SUCCESS",
"payment_message":"Transaction Successful",
"bank_reference":"1565932717",
"auth_id":null,
"payment_method":
{"card":
{"channel":"link",
"card_number":"444433XXXXXX1111",
"card_network":"visa",
"card_type":"credit_card",
"card_country":"IN",
"card_bank_name":"TEST Bank"
}
}
}
POST api/AadhaarGenerateOtp
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| id_number | string | Required. |
Request Formats
application/json, text/json
{
"id_number": "111122223333",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "aadhaar_v2_VLpBOEanKurkpknwpXtp",
"otp_sent": true,
"if_number": true,
"valid_aadhaar": true
},
"status_code": 200,
"message_code": "success",
"message": "OTP Sent.",
"success": true
}
POST api/AadhaarSubmitOtp
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| client_id | string | Required. | |
| otp | string | Required. |
Request Formats
application/json, text/json
{
"client_id": "GENERATED_CLIENT_ID",
"otp": "123456",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "aadhaar_v2_mhtRsxdIqoddFUfiwTfiiv",
"full_name": "Dev Sharma",
"aadhaar_number": "111122224444",
"dob": "1985-09-15",
"gender": "M",
"address": {
"country": "India",
"dist": "North East",
"state": "Delhi",
"po": "",
"loc": "Old Maujpur",
"vtc": "Delhi",
"subdist": "",
"street": "Street No- 3",
"house": "H.No- 116",
"landmark": "Near Pandit Deewan Chand Public School"
},
"face_status": false,
"face_score": -1,
"zip": "110053",
"profile_image": "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",
"has_image": true,
"raw_xml": "https://aadhaar-cckyc-docs.s3.amazonaws.com/babalease/aadhaar_xml/468520211115215154988/468520211115215154988-2021-11-15-162239632914.xml?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5JSHZILL3%2F20211115%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20211115T162239Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&X-Amz-Signature=ddb3d2337f973b2bd7279cf5757b70e5693347cee33c24451ce1bbd8bff9e425",
"zip_data": "https://aadhaar-kyc-docs.s3.amazonaws.com/babalease/aadhaar_xml/468520211115215154988/468520211115215154988-202ccc1-11-15-162239577109.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAY5K3QRM5JSHZILL3%2F20211115%2Fap-south-1%2Fs3%2Faws4_request&X-Amz-Date=20211115T162239Z&X-Amz-Expires=432000&X-Amz-SignedHeaders=host&X-Amz-Signature=be13f35b08de986ec14e66f815a2b8413db9ec9f959fb9408d13c38f17328640",
"care_of": "S/O Prakash Sharma",
"share_code": "3139",
"mobile_verified": false,
"reference_id": "468520211115215154988",
"aadhaar_pdf": null
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
POST api/AadhaarOCR
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| FileName | string | Required. |
Request Formats
application/json, text/json
{
"FileName": "Filename.jpg",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
Case 1:
{
"data": {
"client_id": "ocr_aadhaar_cdarOdgrpLRKfjewhIvL",
"ocr_fields": [
{
"document_type": "aadhaar_front_bottom",
"address": null,
"zip": null,
"care_of": null,
"aadhaar_number": {
"value": "884433166204",
"confidence": "92.0",
"is_masked": false
},
"full_name": {
"value": "Arun Kumar",
"confidence": "67.0"
},
"gender": {
"value": "M",
"confidence": "92.0"
},
"mother_name": {
"value": "",
"confidence": 0
},
"dob": {
"value": "1971-06-14",
"confidence": "96.0"
},
"image_url": null,
"uniqueness_id": "e92c3aed7063ad38f5cae607cf81041835624185ed5ad2aed949fa4bb425940c"
}
]
},
"status_code": "200",
"success": true,
"message": null,
"message_code": "success"
}
Case 2 :
{
"data": {
"client_id": "ocr_aadhaar_qCoQjprfutTJtmHqAWja",
"ocr_fields": [
{
"document_type": "aadhaar_back",
"address": {
"value": "S/O Kaleen Bhaiya, Tripathi Haveli, Mirzapur, Uttar Pradesh - 123456",
"confidence": 92,
"first_line": "Tripathi Haveli",
"second_line": "",
"locality": "",
"landmark": "",
"house_number": "",
"district": "Mirzapur",
"city": "",
"state": "Uttar Pradesh",
"country": "",
"zip": "123456"
},
"zip": {
"value": "123456",
"confidence": 92
},
"care_of": {
"value": "Kaleen Bhaiya",
"confidence": 92,
"relation": "father"
},
"aadhaar_number": {
"value": "123456789010",
"confidence": 91,
"is_masked": false
},
"image_url": null
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
POST api/AadhaarMasking
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| FileName | string | Required. |
Request Formats
application/json, text/json
{
"FileName": "Filename.jpg",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "aadhaar_masking_tldsfdgdfgsdfhdkTadgsKnMhePiDB",
"masked_image": "https://aadhaar-kyc-docs.s3.amazonaws.com/link"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
POST api/PANverification
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| id_number | string | Required. |
Request Formats
application/json, text/json
{
"id_number": "ABCPK1234E",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "pan_ofCaapGfgivEKbgbKi",
"pan_number": "ADUUC1950B",
"full_name": "ARUN KUMAR",
"category": "person"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
POST api/LoanSanction
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. | |
| SignedAgreementURL | string | Required. | |
| EquifaxScore | int | None. | |
| ExperianScore | int | None. | |
| CIBILScore | int | None. | |
| CRIFScore | int | None. | |
| RiskCategory | Int | Required. (1 = High , 2 = Medium , 3 = Low) | |
| LoanSanctionDate | Date("yyyy-MM-dd") | Required. | |
| LoanSanctionStatus | Int | Required. (1=Success, 2=Failed) |
Request Formats
application/json, text/json
{
"ApplicationNo" : "76E5DF778B7649778BD9",
"SignedAgreementURL" : "76E5DF778B7649778BD9_Agreement.pdf",
"EquifaxScore" : -1,
"ExperianScore" : 200,
"CIBILScore" : "200",
"CRIFScore" : "",
"RiskCategory" :1,
"LoanSanctionDate" : "2021-11-22",
"LoanSanctionStatus" : 1
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Record Created"
}
POST api/LoanAgreement
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo" : "76E5DF778B7649778BD9"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"AgreementFileName": "C740911596794457B659_Agreement.pdf",
"SanctionFileName": "C740911596794457B659.pdf",
"Message": "Record Created"
}
POST api/Borrower
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | integer | Required. | |
| LoanAPPID | integer | Required. | |
| FirstName | string | Required. | |
| LastName | string | None. | |
| MiddleName | string | None. | |
| DOB | date | Required. | |
| Gender | integer | Required.(1 = Female , 2 = Male , 3 = Transgender) | |
| MonthlyIncome | integer | Required. | |
| Address1 | string | Required. | |
| State | string | Required. | |
| Pincode | string | Required. (6 digit) | |
| string | Required. | ||
| Mobile | string | Required. (10 digit) | |
| CustPhoto | string | Required. | |
| PAN | string | Required. | |
| PanURL | string | Required. | |
| Adhaar | string | Required. (12 digit) | |
| AdhaarFront | string | Conditional. | |
| AdhaarBack | string | Conditional. | |
| FatherFirstName | string | Required. | |
| FatherLastName | string | None. | |
| MotherLastName | string | None. | |
| MaritalStatus | Int | Required (1 = Married , 2 = Unmarried , 3 = Divorced). | |
| MotherLastName | string | None. | |
| RelatedPersonName1 | string | Required. | |
| RelatedPersonNumber1 | string | Required. (10 digit) | |
| RelatedPersonName2 | string | Required. | |
| RelatedPersonNumber2 | string | Required. (10 digit) | |
| Profession | string | Required. | |
| string | None. | ||
| Education | string | None. | |
| CompanyName | string | None. | |
| JoiningDate | date | None. | |
| CompanyContact | string | None. | |
| RelatedPerson1Relation | string | None. | |
| RelatedPerson2Relation | string | None. | |
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"ClientID": 22,
"LoanAPPID": 34,
"FirstName": "Rahul",
"LastName": "Sharma",
"MiddleName": "Kumar",
"DOB": "2020-06-08",
"Gender": 1,
"Address1": "sample string 5",
"State": "888888",
"Pincode": "123456",
"Email": "Xyz@email.com",
"Mobile": "9898989898",
"CustPhoto": "1635411966512_56_1.jpg",
"PAN": "AAAAA6666A",
"PanURL": "1635411966512_56_1.jpg",
"Adhaar": "111122223333",
"AdhaarFront": "1635411966512_56_1.jpg",
"AdhaarBack": "1635411966512_56_1.jpg",
"AdhaarVerificationStatus": true,
"Profession": "Medical",
"MonthlyIncome": 10000,
"FatherFirstName": "sample string 17",
"FatherLastName": "sample string 18",
"MotherFirstName": "sample string 19",
"MotherLastName": "sample string 20",
"MaritalStatus": 1,
"RelatedPersonName1": "sample string 21",
"RelatedPersonNumber1": "9999999999",
"RelatedPersonName2": "sample string 22",
"RelatedPersonNumber2": "9999999999",
"WhatsApp": "sample string 25",
"Education": "sample string 26",
"CompanyName": "sample string 27",
"JoiningDate": "2020-09-01",
"CompanyContact": "sample string 28",
"RelatedPerson1Relation": "sample string 29",
"RelatedPerson2Relation": "sample string 30",
"BorrowerID": "211"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"CustID": "298",
"Message": "Record Created",
"RecordDate": "2021-11-22"
}
POST api/LoanApplication
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | string | Required. | |
| OrderDate | Date("yyyy-MM-dd") | Required. | |
| LoanAmount | decimal number | Required. | |
| TenureDays | int | Required. | |
| DueDate | Date("yyyy-MM-dd") | Required. | |
| EMINumber | Int | Required. | |
| EMIAmt | decimal number | Required. | |
| AnnualRateOfInterest | decimal number | Required. | |
| InterestType | string | Required. | |
| InterestAmount | decimal number | Required. | |
| DisbursementAmt | decimal number | Required. | |
| ProcessingFee | decimal number | Required. | |
| PlatformFee1 | decimal number | None. | |
| PlatformFee2 | decimal number | None. | |
| PlatformFee3 | decimal number | None. | |
| PlatformFee4 | decimal number | None. | |
| PlatformFee5 | decimal number | None. | |
| LoanPurpose | string | Required. | |
| CustLocLatitude | string | None. | |
| CustLocLogitude | string | None. | |
| CustLoginIP | string | Required. | |
| DeviceId | string | Required. | |
| CustID | int | Required. | |
| BeneficiaryId | string | Required. | |
| GST | decimal number | None. |
Request Formats
application/json, text/json
{
"OrderID": "1000001",
"OrderDate": "2021-09-14",
"LoanAmount": 3000,
"TenureDays": 7,
"DueDate": "2021-09-14",
"EMINumber": 1,
"EMIAmt": 3020,
"AnnualRateOfInterest": 0.3578,
"InterestType": "Fixed",
"InterestAmount": 20,
"DisbursementAmt": 2400,
"ProcessingFee": 600,
"PlatformFee1": 1,
"PlatformFee2": 2,
"PlatformFee3": 2,
"PlatformFee4": 0,
"PlatformFee5": 0,
"BeneficiaryId": "BeneIdABC12314",
"CustID": 298,
"LoanPurpose": "Medical",
"CustLocLatitude": "1.2.2",
"CustLocLogitude": "2.3.3",
"CustLoginIP": "1.2.2.2",
"DeviceId": "ekekekkeke",
"GST" : 120
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"ApplicationNo": "C740911596794457B659",
"Message": "Record Created",
"ApplicationDate": "2021-11-22"
}
POST api/LoanDisbursement
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. | |
| BeneficiaryId | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo" : "1B7D30B132DC4017B4F2",
"BeneficiaryId" : "BeneIdBIKARNAPAULI32"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"DISBURSEMENT_ID": "23456794",
"Message": "Transfer completed successfully",
"PAYMENT_RUN_DATE": "2021-11-22",
"TRANSACTION_UTR_NO": "1637603605133155",
"CUSTOMER_UNIQUE_NO": "8EE9DF67AB9B4930ADBE",
"STATUS_CODE": "SUCCESS",
"STATUS_DESCRIPTION": "Credited to beneficiary BeneIdBIKARNAPAULI32 on Nov 22 2021 11:23PM",
"TRANSACTION_VALUE_DATE": "Nov 22 2021 11:23PM",
"ProcessingFeeInvoiceFile": "1B7D30B132DC4017B4F2.pdf",
"PlatformFeeInvoiceFile": "GGGL30B132DC4017B4F2.pdf"
}
POST api/BankVerification
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| IFSCCode | string | Required. | |
| AccountNo | string | Required. | |
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID" : "211",
"IFSCCode" :"HDFC0000001",
"AccountNo" :"00011020001772"
}
Response Formats
application/json, text/json
{
"status": "SUCCESS",
"subCode": "200",
"accountStatus": "VALID",
"accountStatusCode": "ACCOUNT_IS_VALID",
"message": "Bank Account details verified successfully",
"refId": "658260",
"nameAtBank": "JANE DOE",
"amountDeposited": "1",
"bankName": "CITI BANK",
"utr": "1387420160907000256945",
"city": "KOLKATA",
"micr": "700037002",
"branch": "Mumbai",
"BeneId": "BLI10043"
}
POST api/Pincode
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Pincode | int | Required. |
Request Formats
application/json, text/json
{
"Pincode" : 211999,
}
Response Formats
application/json, text/json
{
"Code": "1",
"Status": "Success",
"Message": "Exists",
"Pincode": 110001,
"StateName": "DELHI"
}
POST api/Legal
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo" : "47C694821E9F42DE8204"
}
Response Formats
application/json, text/json
{
"Code":1,
"Status":"Success",
"Reminder1":"47C694821E9F42DE8204.pdf",
"Reminder2":"47C694821E9F42DE8208.pdf",
"LegalNotice":"47C694821E9F42D38208.pdf",
"Message":"Record Created"
}
POST api/V3/LoanDisStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| DisbRefID | string | Required. |
Request Formats
application/json, text/json
{
"DisbRefID": "ABCD9890001"
}
Response Formats
application/json, text/json
{
"Code":"1",
"Status":"Success",
"DISBURSEMENT_ID": "ABCD9890001",
"PAYMENT_RUN_DATE": "2020-07-24",
"TRANSACTION_UTR_NO": "A1000001",
"CUSTOMER_UNIQUE_NO": "KZTX5SGL7FN8I1POH66C",
"STATUS_CODE": "SUCCESS",
"STATUS_DESCRIPTION": "Credited to beneficiary NA on 14-02-2019 15:10:01",
"TRANSACTION_VALUE_DATE": "2020-07-24"
}
POST api/V3/LoanDisbursement
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. | |
| BeneficiaryId | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo" : "1B7D30B132DC4017B4F2",
"BeneficiaryId" : "BeneIdBIKARNAPAULI32"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"DISBURSEMENT_ID": "23456794",
"Message": "Transfer completed successfully",
"PAYMENT_RUN_DATE": "2021-11-22",
"TRANSACTION_UTR_NO": "1637603605133155",
"CUSTOMER_UNIQUE_NO": "8EE9DF67AB9B4930ADBE",
"STATUS_CODE": "SUCCESS",
"STATUS_DESCRIPTION": "Credited to beneficiary RNAPAULI32 on Nov 22 2021 11:23PM",
"TRANSACTION_VALUE_DATE": "Nov 22 2021 11:23PM",
"ProcessingFeeInvoiceFile": "1B7D30B132DC4017B4F2.pdf",
"PlatformFeeInvoiceFile": "GGGL30B132DC4017B4F2.pdf"
}
POST api/PushRepayment
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| OrderID | string | Required. | |
| ApplicationNo | string | Required. | |
| APPID | Int | Required. | |
| ClientID | Int | Required. | |
| RepaymentAmt | decimal number | Required. | |
| RepaymentDate | Date("yyyy-MM-dd") | Required. | |
| LinkExpireDate | Date("yyyy-MM-ddTHH:mm:ssZ") ISO 8601 time format. | Required. | |
| PaymentLink | string | Required. | |
| LinkStatus | string | Required. | |
| ColRefID | string | Required. |
Request Formats
application/json, text/json
{
"OrderID": "sampleg 1",
"ApplicationNo": "AAHK27927923",
"ClientID": 22,
"APPID": 71,
"RepaymentDate": "2021-09-14",
"RepaymentAmt": 3020.00,
"LinkExpireDate": "2021-07-29T03:30:00Z",
"PaymentLink": "https://payments-test.cashfree.com/order/#RwbOg4xrCuWuUSCdgb0o",
"LinkStatus": "ACTIVE",
"ColRefID":"AD6B90FEA3A0460FADC0"
}
Response Formats
application/json, text/json
{
"Code":1,
"Status":"Success",
"Message":"Record Created"
}
POST api/SendOtp and api/WhatsAppVerification
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Phone | string | Required. | |
| Template | string ("OTP_Login" or "OTP_Reg" or "Agreement_Sign") | Required. |
Request Formats
application/json, text/json
{
"Phone": "9999999999",
"Template" : "Login_OTP"
}
Response Formats
application/json, text/json
{
"Status": "Success",
"Details": "144d996b-04c0-4964-85ab-525bc840bd0a"
}
POST api/VerifyOtp
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Phone | string | Required. | |
| OTP | string | Required. |
Request Formats
application/json, text/json
{
"Phone": "9999999999" ,
"Otp": "123456"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Matched"
}
POST api/DrivingLicense
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| id_number | string | Required. | |
| dob | date ("YYYY-MM-DD") | Required. |
Request Formats
application/json, text/json
{
"id_number": "111122223333",
"dob": "2022-01-01",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"temporary_address": "TRIPATHI HAVELI, MIRZAPUR",
"father_or_husband_name": "KALEEN BHAIYA",
"doe": "2032-07-23",
"temporary_zip": "231001",
"permanent_address": "TRIPATHI HAVELI, MIRZAPUR",
"doi": "2012-07-24",
"client_id": "dIysSjHnIG",
"citizenship": "IND",
"dob": "1990-08-31",
"permanent_zip": "231001",
"gender": "Male",
"license_number": "UP20 20150000000",
"name": "MUNNA BHAIYA",
"state": "UP",
"ola_name": "DISTRICT TRANSPORT OFFICE, MIRZAPUR",
"ola_code": "UP20"
},
"status_code": 200,
"message": "",
"success": true
}
POST api/VotingId
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| id_number | string | Required. |
Request Formats
application/json, text/json
{
"id_number": "111122223333",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "voter_pOZMKtFvHmTunivpukrv",
"epic_no": "XGV1234567",
"gender": "M",
"state": "UTTAR PRADESH",
"name": "MUNNA BHAIYA",
"relation_name": "KALEEN BHAIYA",
"relation_type": "F",
"house_no": "",
"dob": null,
"age": "24",
"area": "MIRZAPUR",
"additional_check": [],
"multiple": false,
"last_update": "2021-01-24",
"assembly_constituency": "MIRZAPUR",
"assembly_constituency_number": "3",
"polling_station": "GOVT SARVODAYA KANYA VIDYALAYA MIRZAPUR",
"part_number": "136",
"part_name": "MIRZAPUR",
"parliamentary_constituency": "MIRZAPUR"
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
POST api/FaceLiveness
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| File | string | Required. |
Request Formats
application/json, text/json
{
"File": "SelfieImage.png",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"confidence": 22,
"live": false
},
"status_code": 200,
"message_code": "success",
"message": null,
"success": true
}
POST api/FaceMatch
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| id_card | string | Required. | |
| selfie | string | Required. |
Request Formats
application/json, text/json
{
"id_card": "IdCardImage.png",
"selfie": "SelfieImage.png",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"match_status": true,
"confidence": 82.87096405029297
},
"message_code": null,
"message": null,
"status_code": 200,
"success": true
}
or
{
"decentroTxnId": "FEABAED438EB448F95B2497CBDC9D09C",
"status": "SUCCESS",
"responseCode": "S00000",
"message": "Face scan completed successfully.",
"data": {
"status": "FAILURE",
"match": "0.00%"
}
POST api/FaceLiveness
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| LoanAPPID | int | Required. | |
| file (.mp4/.webm) | string | Required. |
Request Formats
application/json, text/json
{
"file": "Video.mp4",
"LoanAPPID": "112",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"decentroTxnId": "FEABAED438EB448F95B2497CBDC9D09C",
"status": "SUCCESS",
"responseCode": "S00000",
"message": "Face scan completed successfully.",
"data": {
"status": "FAILURE",
"match": "0.00%"
}
}
POST api/SendEmailOTP
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| string | Required. |
Request Formats
application/json, text/json
{
"Email": "abc@email.com"
}
Response Formats
application/json, text/json
{
"Code":1,
"Status":"Success",
"Message":"Sent"
}
POST api/VerifyEmail
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| string | Required. | ||
| OTP | string | Required. |
Request Formats
application/json, text/json
{
"Email": "abc@email.com",
"OTP": "987654"
}
Response Formats
application/json, text/json
{
"Code":1,
"Status":"Success",
"Message":"Matched"
}
POST api/SendTransSms
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Phone | string | Required. | |
| Template | string ("one of the template names, shared over email.") | Required. |
Request Formats
application/json, text/json
{
"Phone": "9999999999",
"Template" : "Appl_Reciept"
}
Response Formats
application/json, text/json
{
"Status": "Success",
"Details": "144d996b-04c0-4964-85ab-525bc840bd0a"
}
Get api/GetLanguage
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"Languages": [
{
"Id": 1,
"Language": "Hindi"
},
{
"Id": 2,
"Language": "Tamil"
},
{
"Id": 3,
"Language": "Bengoli"
}
]
}
Get api/GetEducation
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"Educations": [
{
"Id": 1,
"Education": "8th"
},
{
"Id": 2,
"Education": "10th"
}
]
}
Get api/GetIndustry
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"Industries": [
{
"Id": 1,
"Industry": "IT"
},
{
"Id": 2,
"Industry": "Income Tax"
}
]
}
Get api/GetEmploymentStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"Employments": [
{
"Id": 1,
"EmploymentStatus": "Self"
},
{
"Id": 2,
"EmploymentStatus": "Business"
}
]
}
Get api/GetIncomeStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"Income": [
{
"Id": 1,
"IncomeStatus": "1000-2000"
},
{
"Id": 2,
"IncomeStatus": "2000-3000"
}
]
}
Get api/GetLoanPurpose
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"Purpose": [
{
"Id": 1,
"LoanPurpose": "Business"
},
{
"Id": 2,
"LoanPurpose": "Fee Payment"
}
]
}
Get api/GetRelationship
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
Response Formats
application/json, text/json
{
"RelationshipList": [
{
"Id": 1,
"Relationship": "Brother"
},
{
"Id": 2,
"Relationship": "Sister"
},
{
"Id": 3,
"Relationship": "Mother"
},
{
"Id": 4,
"Relationship": "Wife"
}
]
}
POST api/PANOCR
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| id_card | string ("file name (.jpg,.png)") | Required. |
Request Formats
application/json, text/json
{
"id_card": "IdCardImage.png",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "pan_photo_EyvfRMdeuzprgbvYSZtv",
"ocr_fields": [
{
"document_type": "pan",
"pan_number": {
"value": "ABCDEF3229J",
"confidence": 97
},
"full_name": {
"value": "Avinash Kumar",
"confidence": 99
},
"father_name": {
"value": "Ishwar Prasad",
"confidence": 98
},
"dob": {
"value": "22/01/1992",
"confidence": 98
}
}
]
},
"status_code": 200,
"message_code": "success",
"message": null,
"success": true
}
POST api/DLOCR
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| id_card | string ("file name (.jpg,.png)") | Required. |
Request Formats
application/json, text/json
{
"id_card": "IdCardImage.png",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "ocr_license_FpsyahDFYmafPrPrpauC",
"document_type": null,
"license_number": {
"value": "",
"confidence": 0.0
},
"dob": {
"value": null,
"confidence": 0.0,
"yob": false
},
"image_url": null
},
"status_code": 200,
"message_code": "success",
"message": null,
"success": true
}
POST api/VotingIdOCR
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| id_card | string ("file name (.jpg,.png)") | Required. |
Request Formats
application/json, text/json
{
"id_card": "IdCardImage.png",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"data": {
"client_id": "ocr_voter_WnzqvfntkYdEOSmPmSqo",
"ocr_fields": [
{
"document_type": "voterid_front",
"full_name": {
"value": "Anshul Chaudhary",
"confidence": 91.0
},
"age": {
"value": "",
"confidence": 0.0
},
"care_of": {
"value": "Delo",
"confidence": 98.0
},
"dob": {
"value": "1800-01-01",
"confidence": 0.0,
"yob": false
},
"doc": {
"value": "1800-01-01",
"confidence": 0.0,
"yob": false
},
"gender": {
"value": "",
"confidence": 0.0
},
"epic_number": {
"value": "TTI3266939",
"confidence": 91.0
}
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
{
"data": {
"client_id": "ocr_voter_zazmoidkfzXctekYMPyj",
"ocr_fields": [
{
"document_type": "voterid_back",
"address": {
"value": "third floor, B-BLOCKFREEDOM FIGHTERS ENCLAVE NEBSARAI, Delhi",
"confidence": 95.0,
"first_line": "",
"second_line": "",
"locality": "",
"landmark": "",
"house_number": "",
"district": "Enclave",
"city": "NEBSARAI",
"state": "Delhi",
"country": null,
"zip": ""
},
"zip": {
"value": "",
"confidence": 0.0
},
"epic_number": {
"value": "",
"confidence": 0.0
},
"dob": {
"value": "1998-10-11",
"confidence": 97.0,
"yob": false
},
"doi": {
"value": null,
"confidence": 0.0,
"yob": false
},
"gender": {
"value": "M",
"confidence": 93.0
},
"age": {
"value": "",
"confidence": 0.0
}
}
]
},
"status_code": 200,
"success": true,
"message": null,
"message_code": "success"
}
POST api/UploadPhoto
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| Photo | string ("file name (.jpg,.png)") | Required. |
Request Formats
application/json, text/json
{
"Photo": "IdCardImage.png",
"BorrowerID": "133"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Uploaded",
"Message": "Success"
}
POST api/UserRegistration
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientID | int | Required. | |
| LoanAPPID | int | Required. | |
| FirstName | string | Required. | |
| MiddleName | string | None | |
| LastName | string | None | |
| string | Required | ||
| Mobile | string | Required | |
| Language | int | Required |
Request Formats
application/json, text/json
{
"ClientId": 102,
"LoanAPPID": 101,
"FirstName": "Mukesh",
"MiddleName": "Kumar",
"LastName": "Sharma",
"Email": "Mukesh@gmail.com",
"Mobile": "9999999999",
"Language": 2
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"BorrowerId": "64646465468kjghjhg",
"Message": "Account created successfully"
}
POST api/YourAccountUnderEvaluation
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerId | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerId": "335D3A66C4434BB8A067"
}
Response Formats
application/json, text/json
{
"Final_Decision": "Declined",
"Reason_for_decision": [
"CRIF score is less than 600",
"30+ DPD's present in bureau report"
],
"output_variables": {
"SMS_score": 794.0,
"Bureau_score": 300,
"Number_of_30plus_DPD": 7,
"Number_of_60plus_DPD_in_last_12months": 0,
"Number_of_substandard_acc_in_last_12months": 0,
"Number_of_doubtful_acc_in_last_12months": 0,
"Number_of_loss_acc_in_last_12months": 0
}
}
POST api/GetBank
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID": "335D3A66C4434BB8A067"
}
Response Formats
application/json, text/json
{
"Banks": [
{
"BeneficiaryID": "BeneIdBIKARNAPAULI31",
"NameAtBank": "JOHN DOE",
"BankName": "YES BANK",
"IFSC": "YESB0000262",
"AccountNo": "XXXXXXXXXXX1191"
},
{
"BeneficiaryID": "BeneIdBIKARNAPAUL",
"NameAtBank": "JOHN DOE",
"BankName": "ICICI BANK",
"IFSC": "ICIC0000262",
"AccountNo": "XXXXXXXXXXX1192"
}
],
"Code": 1,
"Status": "Success"
}
POST api/EmudhraSign
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. | |
| DocumentName | string | Required. ("Agreement" or "Sanction") | |
| FileName | string | Required. |
Request Formats
application/json, text/json
{
"FileName":"335D3A66C4434BB8A067_Sanction.pdf",
"DocumentName":"Sanction",
"ApplicationNo":"335D3A66C4434BB8A067"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Signed",
"SignedFileName": "335D3A66C4434BB8A067_SanctionSigned.pdf"
}
POST api/GetContent
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Type | string | Required.("Legal" or "FAQ" or "About Us" or "Customer Support" or "Permission Screen" or "Permission Denied" or "Announcements" or "Promotion" or "Comingsoon") |
Request Formats
application/json, text/json
{
"Type":"FAQ"
}
Response Formats
application/json, text/json
{
"Types": [
{
"Id": 6,
"HeaderName": "About Taplend",
"Text": "About Taplend",
"Type": "FAQ"
},
{
"Id": 7,
"HeaderName": "Loan Application",
"Text": "Loan Application",
"Type": "FAQ"
},
{
"Id": 8,
"HeaderName": "Credit Limit",
"Text": "Credit Limit",
"Type": "FAQ"
},
{
"Id": 9,
"HeaderName": "Repayment",
"Text": "Repayment",
"Type": "FAQ"
},
{
"Id": 10,
"HeaderName": "Interest, Processing fee and Others",
"Text": "Interest, Processing fee and Others",
"Type": "FAQ"
}
],
"Code": 1,
"Status": "Success"
}
POST api/UploadFile
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| File | File ("type (.jpg,.png,.pdf)") | Required. |
Request Formats
application/json, text/json
{
"File": filepath
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Uploaded",
"FileName": "5325353Agreement.jpg"
}
POST api/DownloadFromE2E
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName | string ("type (.jpg,.png,.pdf)") | Required. |
Request Formats
application/json, text/json
{
"FileName":"Agreement.pdf"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Message": "Success",
"Status": "Success",
"FilePath": "http://production.taplend.in/documents/Agreement.pdf"
}
POST api/Feedback
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| Feedback | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID":"113",
"Feedback" :"Taploan is very good app."
}
Response Formats
application/json, text/json
{
"Code": 1,
"Message": "Success",
"Status": "Success"
}
POST api/GetNotification
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID": "335D3A66C4434BB8A067"
}
Response Formats
application/json, text/json
{
"Notifications": [
{
"Id": "1",
"Notification": "JOHN DOE"
},
{
"Id": "2",
"Notification": "JOHN DOE"
}
],
"Code": 1,
"Status": "Success"
}
POST api/DeleteNotification
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | string (use "All" to delete all else Id to delete specific.) | Required. |
Request Formats
application/json, text/json
{
"Id": "1"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Message": "Deleted",
"Status": "Success"
}
POST api/DeleteAccount
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID": "1dsfgsdgsdfgfss"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Message": "Deleted",
"Status": "Success"
}
POST api/AllLoanDetail
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID": "1dsfgsdgsdfgfss"
}
Response Formats
application/json, text/json
{
"AllLoan": [
{
"LoanStatus": "Paid Off",
"TransactionStatus": "Funds Transfered",
"ApplicationNo": "3203B09D42E341739CCF360E8",
"LoanApplyDate": "2022-12-14",
"TransferDetail": "you received a loan amount of 1762 made on your account at 09/10/2021 at 14:59 PM"
},
{
"LoanStatus": "Repayment pending",
"TransactionStatus": "Funds Transfered",
"ApplicationNo": "3203B09D42E34173",
"LoanApplyDate": "2022-12-14",
"TransferDetail": "you received a loan amount of 5000 made on your account at 09/10/2021 at 15:22 PM"
},
{
"LoanStatus": "Under Review",
"TransactionStatus": "Failed",
"ApplicationNo": "341739CCF360E81FAD35C",
"LoanApplyDate": "2022-12-14",
"TransferDetail": ""
}
],
"Code": 1,
"Status": "Success"
}
Post api/GetLoanDetail
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"LoanAmount": "₹5,000",
"DisbursedAmount": "₹4,262",
"TotalInterest": "₹320",
"TotalEmI": "4",
"EMIAmount": "₹1,330",
"ProductDuration": "64",
"AnnualizedInterestRate": "36% p.a",
"AnnualPercentageRate": "%",
"ProcessingFee": "₹500",
"LoanDocumentSingingFee": "₹25",
"RiskAssessmentFee": "₹100",
"GST": "₹113",
"TotalRepaymentAmount": "₹5,320",
"LoanPurpose": "Education"
}
Post api/VPAVerification
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. | |
| VPA | string | Required. | |
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID": "5521A6A3C8A340EB83601C60216FDFA0",
"VPA": "rohieeeeet@yesb",
"ApplicationNo": "A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
Response (Success)
{
"requestInfo": {
"pgMerchantId": "MYBANK00000000001",
"pspRefNo": "MYBANK3D4BCE69E1B645A8A1093CBD214"
},
"payeeType": {
"virtualAddress": "chetan4338@abc",
"name": "MYBANK TEST CUSTOMER",
"merchantInfo": {
"code": "5411",
"ifsc": "MYBANK0000001",
"accType": "CURRENT",
"subCode": "5411",
"mid": "UPI000000001",
"sid": "5452",
"tid": "UPI000000001",
"merchantType": "SMALL",
"brand": "UPI TEST MERCHANT",
"legal": "UPI TEST MERCHANT",
"franchise": "UPI TEST MERCHANT",
"ownershipType": "OTHERS",
"iin": "548545",
"isVerified": "Y"
}
},
"status": "S",
"statusDesc": "VPA is available for transaction",
"errCode": "MD525",
"is_vpa_valid": "Y"
"maskName": "Google"
}
Response (Failure)
{
"requestInfo": {
"pgMerhcnatId": "MYBANK00000000001",
"pspRefNo": "MYBANK3D4BCE69E1B645A8A1093CBD214"
},
"status": "F",
"statusDesc": "Technical issues while processing the request",
"errCode": "MD906"
}
Response (timeout)
{
"requestInfo": {
"pgMerhcnatId": "MYBANK00000000001",
"pspRefNo": "MYBANK3D4BCE69E1B645A8A1093CBD214"
},
"status": "T",
"statusDesc": "Request has been timed out",
"errCode": "MD203"
}
Post api/LoanDisbursementByUpi
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. | |
| BeneficiaryId | string | Required. |
Request Formats
application/json, text/json
{
"BeneficiaryId": "A340EB83601C60216FDFA0",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"MerchantTxnID": "TEST8062523025626631234566",
"Amount": "4385.92",
"TxnAuthDate": "2018:06:25 23:04:30",
"TxnStatus": "S"
}
(S=Success, F=Failure, T= Time out, P=PENDING)
Post api/RepaymentByUpi
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. | |
| BorrowerID | string | Required. | |
| RepaymentAmt | int | Required. | |
| Type | string (FULL,EMI,CancelLoan) | Required. |
Request Formats
application/json, text/json
{
"BorrowerID": "A340EB83601C60216FDFA0",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"RepaymentAmt":3500,
"Type":"EMI"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"MerchantTxnID": "TEST8062523025626631234566",
"Amount": "3500",
"TxnAuthDate": "2018:06:25 23:04:30",
"TxnStatus": "S"
}
(S=Success, F=Failure, T= Time out, P=PENDING)
POST api/UploadVideo
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| File | file (.mp4/.webm) | Required. |
Request Formats
application/json, text/json
{
"File": filepath
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "Uploaded",
"FileName": "5325353Agreement.mp4"
}
Post api/TransactionStatusUPI
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| MerchantTxnID | string | Required. |
Request Formats
application/json, text/json
{
"MerchantTxnID": "A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"MerchantTxnID": "TEST8062523025626631234566",
"Amount": "3500",
"TxnAuthDate": "2018:06:25 23:04:30",
"TxnStatus": "S"
}
(S=Success, F=Failure, T= Time out, P=PENDING)
Post api/UPICardDetails
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo":"5521A6A3C8A340EB83601C60216FDFA0"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"ApplicationNo": "5521A6A3C8A340EB83601C60216FDFA0",
"CardDetails": [
{
"Maximumamount": "₹10,000",
"Mandatefrequency": "As Persented",
"Startdate": "18-Jan-2023",
"Expirydate": "18-Jan-2025"
}
]
}
POST api/CustomerStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| BorrowerID | string | Required. |
Request Formats
application/json, text/json
{
"BorrowerID": "335D3A66C4434BB8A067"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Email": "not verified",
"Phone": "not verified",
"PAN": "not verified",
"DL": "verified",
"Adhaar": "not verified",
"UserRegistration": "not verified",
"BasicInfo": "not verified",
"Workinfo": "not verified",
"ReferenceContacts": "not verified",
"whatsapp": "not verified",
"Selfie": "not verified",
"Idverification": "verified",
"MandateApproval": "NotApproved"
}
POST api/CheckByPhone
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| Phone | string | Required. |
Request Formats
application/json, text/json
{
"Phone": "9999999999"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"Message": "user already exist, pleae login."
}
POST api/CreateMandate
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo": "DEGFJ99HH999GGG99999"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"pasRefNo": "MYBANK3BCBC823C9DE4E51A629C2E21969147",
"message": "Mandate request initiated successfully"
}
POST api/GetMandateStatus
The authentication token is the authorization that you need to pass in order to access Alicash's resources. This authorization helps us to validate that you are a valid user. Alicash APi uses tokens for validation.
Use this API to validate your API user and obtain the authentication token. Copy this token and use it for the further call of the API's. Your API keys carry many privileges, so be sure to keep them secure! Do not share your secret token in publicly accessible areas such as GitHub, client-side code, and so forth.Steps To Use Token:
- Copy the token recieved in response.
- Include 'Authorization: Bearer [yourtokenvalue]' in the appropriate field of your code.
- Thats all! In case of any error, try checking your parameters.
| Name | Description | Type | Additional information |
|---|---|---|---|
| ApplicationNo | string | Required. |
Request Formats
application/json, text/json
{
"ApplicationNo": "DEGFJ99HH999GGG99999"
}
Response Formats
application/json, text/json
{
"Code": 1,
"Status": "Success",
"pasRefNo": "MYBANK3BCBC823C9DE4E51A629C2E21969147",
"message": "Mandate has been revoked successfully"
}