POST api/GetPanVerificationDetails

Request Information

URI Parameters

None.

Body Parameters

PANRequest
NameDescriptionTypeAdditional information
InnovId

integer

None.

PanNo

string

None.

Request Formats

application/json, text/json

Sample:
{
  "InnovId": 1,
  "PanNo": "sample string 2"
}

application/xml, text/xml

Sample:
<PANRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <InnovId>1</InnovId>
  <PanNo>sample string 2</PanNo>
</PANRequest>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'PANRequest'.

Response Information

Resource Description

PANResponse
NameDescriptionTypeAdditional information
InnovId

string

None.

Pan_number

string

None.

user_full_name

string

None.

status

string

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "InnovId": "sample string 1",
  "Pan_number": "sample string 2",
  "user_full_name": "sample string 3",
  "status": "sample string 4",
  "Message": "sample string 5"
}

application/xml, text/xml

Sample:
<PANResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models">
  <InnovId>sample string 1</InnovId>
  <Message>sample string 5</Message>
  <Pan_number>sample string 2</Pan_number>
  <status>sample string 4</status>
  <user_full_name>sample string 3</user_full_name>
</PANResponse>