| Header | Description |
|---|---|
myAppId | Application identifier used for service authentication |
service-key | Unique service key provided for accessing the verification service |
Authorization | API authorization credentials for secure access |
Content-Type | Specifies the request payload format (application/json) |
| Parameter | Type | Description |
|---|---|---|
propertyNo | String | Unique property identification number |
state | String | State where the property is located |
city | String | City or municipal corporation name |
district | String | District of the property (optional) |
ulb | String | Urban Local Body identifier (optional) |
consent | String | User consent flag (e.g., "y") |
caseId | String | Unique case identifier for tracking the request |
documentType | String | Specifies the verification type (Property Tax Verification) |
| Field | Description |
|---|---|
ok | Indicates whether the request was successful (true / false) |
message | Status message describing the result |
result.status_code | Status code of the verification response |
result.request_id | Unique request identifier |
result.case_id | Case ID provided in the request |
result.property_details.propertyId | Property identification number |
result.property_details.propertyAddress | Registered property address |
result.property_details.BillingName | Name of the billing person/entity |
result.property_details.BillingAddress | Billing address associated with the property |
result.tax_calculations | Details of total tax, dues, and amount paid |
result.penalty | Penalty details including debit, credit, and balance amounts |
result.owner_details | Owner information such as name, contact, and PAN |
result.payment_details | Payment records including receipt number, amount, and payment mode |
error | Contains error details if the request fails |
curl --location --request POST 'https://api.staging.indiconnect.in/idverifygr/verification' \
--header 'myAppId: verification_v4_app' \
--header 'service-key: sk_test_a9944179bc598f06' \
--header 'Authorization: x-api-access indc_test_a41eaf2a175f3b13:ac_test_bf7117f6da6c6285' \
--header 'Content-Type: application/json' \
--data-raw '{
"query": "mutation {\r\n verify(\r\n input: {\r\n documentType: \"Property Tax Verification\"\r\n propertyNo: \"MW1210950010030\"\r\n state: \"Maharashtra\"\r\n city: \"Greater Mumbai\"\r\n district: \"\"\r\n ulb: \"\"\r\n consent: \"y\"\r\n caseId: \"123456\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on PropertyTaxVerificationResult {\r\n status_code\r\n request_id\r\n case_id\r\n\r\n property_details {\r\n propertyId\r\n propertyAddress\r\n BillingName\r\n BillingAddress\r\n }\r\n\r\n tax_calculations {\r\n totalTax\r\n totalTaxDue\r\n totalamountPaidRs\r\n }\r\n\r\n penalty {\r\n debitAmount\r\n creditAmount\r\n balanceTaxAmount\r\n }\r\n\r\n owner_details {\r\n ownerName\r\n mobileNo\r\n email\r\n panNo\r\n }\r\n\r\n payment_details {\r\n receiptNo\r\n amountPaidRs\r\n paymentMode\r\n }\r\n }\r\n }\r\n error {\r\n status\r\n message\r\n decryptedError\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "PropertyTaxVerificationResult",
"status_code": 101,
"request_id": "cd818ac7-dd8a-4297-a9f4-2e3e3fb0c6e6",
"case_id": "123456",
"property_details": {
"propertyId": "MW1210950010030",
"propertyAddress": "HOUSING COMMISSIONER BOMBAY MW171(2) BLOCK NO.710",
"BillingName": "DATTATRAY S KHESE ",
"BillingAddress": "TILAK NAGAR KRIPANILAYA CO-OP HSG SOC.LTD"
},
"tax_calculations": [
{
"totalTax": null,
"totalTaxDue": null,
"totalamountPaidRs": null
}
],
"penalty": {
"debitAmount": null,
"creditAmount": null,
"balanceTaxAmount": null
},
"owner_details": [
{
"ownerName": null,
"mobileNo": null,
"email": null,
"panNo": null
}
],
"payment_details": [
{
"receiptNo": null,
"amountPaidRs": null,
"paymentMode": null
}
]
},
"error": null
}
}
}