POST
/
mobile360
/
otp
/
verify
{
  "verification_id": "test_verification_id",
  "reference_id": 123456,
  "status": "VALID",
  "personal_info": {
    "full_name": "Jane Doe",
    "gender": "Female",
    "total_income": null,
    "occupation": "Self-Employed",
    "age": "30",
    "dob": "1994-03-15"
  },
  "phone_list": [
    {
      "sequence": "1",
      "type": "MOBILE",
      "number": "9876543210"
    },
    {
      "sequence": "2",
      "type": "HOME_PHONE",
      "number": "0123456789"
    }
  ],
  "email_list": [
    {
      "sequence": "1",
      "email": "jane.doe@example.com"
    }
  ],
  "passport_number": [],
  "aadhaar_number": [],
  "ration_card": [],
  "driving_license": [],
  "voter_id": [],
  "pan_number": [
    {
      "sequence": "1",
      "number": "ABCDE1234F"
    }
  ],
  "address_list": [
    {
      "address": "123 Elm Street, Apartment 5B, Springfield",
      "type": "Primary",
      "state": "Illinois",
      "pincode": "62704"
    },
    {
      "address": "456 Maple Avenue, Suite 10, Springfield",
      "type": "Office",
      "state": "Illinois",
      "pincode": "62701"
    }
  ]
}

Authorizations

x-client-id
string
header
required

Client ID. You can find your ID in the Merchant Dashboard.

x-client-secret
string
header
required

Client secret key. You can find your secret key in the Merchant Dashboard.

Body

application/json

Find the request parameters for Mobile 360 Verify OTP

otp
string
default:
123456
required

OTP entered by the user.

verification_id
string
default:
test_verification_id
required

It is the unique ID you create to identify the verification request. The maximum character limit is 50. Only alphaumeric, period (.), hyphen (-), and underscore ( _ ) are allowed.

Response

200 - application/json

Schema for the response of Mobile360 Validate OTP API.

aadhaar_number
object[]

List of Aadhaar numbers associated with the individual.

address_list
object[]

List of addresses associated with the individual.

driving_license
object[]

List of driving license numbers associated with the individual.

email_list
object[]

List of email addresses associated with the individual.

pan_number
object[]

List of PAN numbers associated with the individual.

passport_number
object[]

List of passport numbers associated with the individual.

personal_info
object

Personal information of the individual.

phone_list
object[]

List of phone numbers associated with the individual.

ration_card
object[]

List of ration card numbers associated with the individual.

reference_id
integer

Unique reference ID for the transaction.

status
string

It displays the status of the API request. Possible value

  • VALID: Data has been successfully fetched using the provided mobile number.
  • INVALID: No data could be retrieved for the given mobile number.
verification_id
string

Unique ID of the verification request.

voter_id
object[]

List of voter ID numbers associated with the individual.