Feel free to reach techsupport@surepass.io for any technical support or guidance.
Authorization
header as Bearer TOKEN
.https://sandbox.surepass.io
https://kyc-api.surepass.io
Header | Required | Description |
---|---|---|
Authorization | Yes | Bearer token authentication using JWT |
Content-Type | Yes | application/json |
Parameter | Type | Required | Description |
---|---|---|---|
ded_licence_number | String | Yes | The license number issued by Dubai Economic Department |
ded_licence_type | String | Yes | The type of license (e.g., commercial) |
{
"ded_licence_number": "35343",
"ded_licence_type": "commercial"
}
Parameter | Type | Description |
---|---|---|
data | Object | Contains all license verification details |
data.client_id | String | Unique client identifier |
data.ded_license_number | String | License number |
data.ded_license_type | String | License type |
data.trade_name | String | Trade name as per license details |
data.license_status | String | Current status of the license (e.g., Approved) |
data.issue_date | String | Date when the license was issued (YYYY-MM-DD) |
data.expiry_date | String | Date when the license expires (YYYY-MM-DD) |
data.registration_number | String | License registration number |
data.activities | Array | List of business activities permitted under the license |
data.commercial_tenancy_contract | Object | Details of the commercial tenancy |
data.member_details | Array | List of members associated with the license |
status_code | Integer | HTTP status code of the response |
success | Boolean | Indicates if the request was successful |
message | String | Response message |
message_code | String | Code indicating the response status |
Parameter | Type | Description |
---|---|---|
property_name | String | Name of the property as per license details |
landlord_name | String | Name of the property owner |
tenant_name | String | Name of the property tenant as per license details |
rent_amount_yearly | String | Annual rent amount |
start_date | String | Tenancy start date (YYYY-MM-DD) |
expiry_date | String | Tenancy expiry date (YYYY-MM-DD) |
total_of_checks | String | Total number of checks for rent payment |
Parameter | Type | Description |
---|---|---|
member_name | String | Name of the member |
nationality | String | Nationality of the member |
role | String | Role of the member in the business |
share | String | Percentage share owned by the member |
{
"data": {
"client_id": "uae_ded_license_qzpiJhaYfuKdCkkZqotQ",
"ded_license_number": "12345",
"ded_license_type": "commercial",
"trade_name": "M R L.L.C",
"license_status": "Approved",
"issue_date": "2022-10-13",
"expiry_date": "2023-10-12",
"registration_number": "RN - 18520",
"activities": [
"Typing and Documents Photocopying Services",
"Travel Tickets Selling"
],
"commercial_tenancy_contract": {
"property_name": "ععبدالله صالح المدنى",
"landlord_name": "عدن عبدالله صالح المدنى",
"tenant_name": "Abdulla",
"rent_amount_yearly": "30000",
"start_date": "2022-05-00",
"expiry_date": "2023-04-00",
"total_of_checks": "4"
},
"member_details": [
{
"member_name": "عبدالله ماججد آل علي",
"nationality": "United Arab Emirates",
"role": "شريك",
"share": "51"
},
{
"member_name": "Al-Ali",
"nationality": "اات العربية المتحدة",
"role": "Partner",
"share": "51"
},
{
"member_name": "كانيعزيز حاساينار",
"nationality": "India",
"role": "شريك",
"share": "49"
},
{
"member_name": "AZEEZ HASSAINAR",
"nationality": "الهند",
"role": "Partner",
"share": "49"
},
{
"member_name": "كانياليز حاساينار",
"nationality": "India",
"role": "مدير",
"share": "0"
},
{
"member_name": "AZEEZ HASSAINAR",
"nationality": "الهند",
"role": "Manager",
"share": "0"
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}
{
"status_code": 400,
"success": false,
"message": "Invalid license number or type",
"message_code": "invalid_license"
}
curl --location --request POST 'https://kyc-api.surepass.app/api/v1/uae-ded/license-verification' \
--header 'Authorization: Bearer TOKEN' \
--header 'Content-Type: application/json' \
--data-raw '{
"ded_licence_number": "35343",
"ded_licence_type": "commercial"
}'
{
"data": {
"client_id": "uae_ded_license_qzpiJhaYfuKdCkkZqotQ",
"ded_license_number": "12345",
"ded_license_type": "commercial",
"trade_name": "M R L.L.C",
"license_status": "Approved",
"issue_date": "2022-10-13",
"expiry_date": "2023-10-12",
"registration_number": "RN - 18520",
"activities": [
"Typing and Documents Photocopying Services",
"Travel Tickets Selling"
],
"commercial_tenancy_contract": {
"property_name": "ععبدالله صالح المدنى",
"landlord_name": "عدن عبدالله صالح المدنى",
"tenant_name": "Abdulla",
"rent_amount_yearly": "30000",
"start_date": "2022-05-00",
"expiry_date": "2023-04-00",
"total_of_checks": "4"
},
"member_details": [
{
"member_name": "عبدالله ماججد آل علي",
"nationality": "United Arab Emirates",
"role": "شريك",
"share": "51"
},
{
"member_name": "Al-Ali",
"nationality": "اات العربية المتحدة",
"role": "Partner",
"share": "51"
},
{
"member_name": "كانيعزيز حاساينار",
"nationality": "India",
"role": "شريك",
"share": "49"
},
{
"member_name": "AZEEZ HASSAINAR",
"nationality": "الهند",
"role": "Partner",
"share": "49"
},
{
"member_name": "كانياليز حاساينار",
"nationality": "India",
"role": "مدير",
"share": "0"
},
{
"member_name": "AZEEZ HASSAINAR",
"nationality": "الهند",
"role": "Manager",
"share": "0"
}
]
},
"status_code": 200,
"success": true,
"message": "Success",
"message_code": "success"
}