POST v1/api/GetITRcompliance
Request Information
URI Parameters
None.
Body Parameters
ITRRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| PAN_Number | string |
None. |
|
| MemberId | string |
None. |
|
| ServiceId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"PAN_Number": "sample string 1",
"MemberId": "sample string 2",
"ServiceId": 3
}
application/xml, text/xml
Sample:
<ITRModel.ITRRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Models"> <MemberId>sample string 2</MemberId> <PAN_Number>sample string 1</PAN_Number> <ServiceId>3</ServiceId> </ITRModel.ITRRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ITRResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| data |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": {
"client_id": "sample string 1",
"pan_number": "sample string 2",
"compliant": true,
"pan_allotment_date": "sample string 4",
"masked_name": "sample string 5",
"pan_aadhaar_linked": "sample string 6",
"specified_person_under_206": "sample string 7",
"pan_status": "sample string 8",
"valid_pan": true
},
"status_code": 1,
"success": true,
"message": "sample string 3",
"message_code": "sample string 4"
}
application/xml, text/xml
Sample:
<ITRModel.ITRResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VexilUtilityAPI.Models">
<data>
<client_id>sample string 1</client_id>
<compliant>true</compliant>
<masked_name>sample string 5</masked_name>
<pan_aadhaar_linked>sample string 6</pan_aadhaar_linked>
<pan_allotment_date>sample string 4</pan_allotment_date>
<pan_number>sample string 2</pan_number>
<pan_status>sample string 8</pan_status>
<specified_person_under_206>sample string 7</specified_person_under_206>
<valid_pan>true</valid_pan>
</data>
<message>sample string 3</message>
<message_code>sample string 4</message_code>
<status_code>1</status_code>
<success>true</success>
</ITRModel.ITRResponse>