Overview of the IMEI Validation response object.
Shown below is a sample response of a IMEI Validation API.
{
"product_imei_details": [
{
"product_code": "786",
"imei_no": "9090999933332251",
"state_code": "23",
"imei_processing_status": {
"response_code": 0,
"response_message": "SUCCESS"
}
},
{
"product_code": "40",
"imei_no": "9090999933332252",
"imei_processing_status": {
"response_code": 0,
"response_message": "SUCCESS"
}
}
],
"response_code": 0,
"response_message": "SUCCESS"
}
{
"response_code": 107,
"response_message": "MERCHANT DATA IS NOT VALID"
}
The table below lists the various parameters returned in the payments response object.
Parameter | Type | Description |
---|---|---|
product_imei_details | array of object | An object that contains the information about each product code-wise IMEI details. Learn more about our product_imei_details child object. |
response_code | integer | Response code of the request. Example: 200 |
response_message | string | Corresponding message to the response code. Example: Order Creation Successful |
Product IMEI Details [Child Object]
The table below lists the various parameters in the product_imei_details
child object. This object is part of the IMEI Validation sample response object.
Parameter | Type | Description |
---|---|---|
product_code | string | Product code passed in request parameter. Example: 40 |
imei_no | string | IMEI passed in the request parameter. Example: 9090999933332251 |
state_code | string | State code passed in the request parameter. Example: 23 |
imei_processing_status | object | An object that contains the IMEI processing status details. Learn more about our product_imei_details child object. |
IMEI Processing Status [Child Object]
The table below lists the various parameters in the imei_processing_status
child object. This object is part of the product_imei_details
object.
Parameter | Type | Description |
---|---|---|
response_code | integer | Response code of the request. Example: 200 |
response_message | string | Corresponding message to the response code. Example: Order Creation Successful |