IMEI Validation
Learn how you can validate the IMEI number using Plural API.
Integrating with Plural, you can now include an IMEI verification flow, enabling merchants to verify product IMEI or serial numbers during the payment. This feature ensures compliance and enhances efficiency by integrating IMEI verification.
You can use this Plural IMEI Validation API to Block
and Unblock
.
Integrating with IMEI validations allows you to secure operations in EMI or loan-based purchases. IMEI validation ensures that the device associated with the payment is accurately identified and secured. Businesses use IMEI validation to manage processes like unblocking devices during returns or blocking them in cases of payment default.
IMEI Validation API
Use this API to Block
and Unblock
the IMEI number.
Use the endpoint to validate the IMEI number.
POST: https://pluraluat.v2.pinepg.in/api/affordability/v1/product/{order_id}/imei
POST: https://api.pluralpay.in/api/affordability/v1/product/{order_id}/imei
Below is a sample request and sample response for a IMEI Validation API.
{
"merchant_product_imei_reference": "merchant-ref-786",
"request_type": "BLOCKING",
"products": [
{
"product_code": "xyz",
"dealer_code": "DLR100",
"state_code": "NY",
"product_imei": "SN1234567863"
}
]
}
{
"merchant_product_imei_reference": "merchant-ref-786",
"request_type": "BLOCKING",
"products": [
{
"product_code": "xyz",
"dealer_code": "DLR100",
"state_code": "NY",
"product_imei": "SN1234567863",
"product_imei_status": "BLOCKED",
"product_brand_response": {}
}
]
}
{
"merchant_product_imei_reference": "merchant-ref-786",
"request_type": "BLOCKING",
"products": [
{
"product_code": "xyz",
"dealer_code": "DLR100",
"state_code": "NY",
"product_imei": "SN1234567863",
"product_brand_response": {
"code": "PRODUCT_ALREADY_BLOCKED",
"message": "Product is already blocked"
}
}
]
}
Updated 8 days ago