Business PAN Card Verification by Number
Verifying Business PAN Card by number
URL: /api/v1/pan-card-number-verification/
Method: POST
Auth Required: YesParameters
| Parameter Name | Type | Description |
|---|---|---|
| pan_card_name | string | Name of business Pan Card |
| pan_card_number | string | Number of Business Pan Card |
Request json
{
"pan_card_name": "XYZ PRIVATE LIMITED",
"pan_card_number": "xxxxxxxxx0"
}Response
The response will contain a JSON object with the following fields:
| Field | Type | Description |
|---|---|---|
| status_code | int | Status code |
| message | string | Brief Details of status |
| data | array | Return Data into data field as a list |
Each object in the data array will have the following fields:
| Field | Type | Description |
|---|---|---|
| verified | boolean | Pan Card verification field |
| pan_status | stirng | Pan valid or not |
| pan_status_code | stirng | Pan Card Satus for identification |
| message | string | Verification message from server |
| upstream_name | stirng | Name of the business pan |
Here is the example of Business Pan response:
{
"status_code": 200,
"message": "Pan Card Verification success",
"data": {
"verified": true,
"pan_status": "VALID",
"pan_status_code": "E",
"message": "Verification completed with positive result",
"upstream_name": "ABC Company LTD."
}
}