| 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 |
|---|---|---|
vehicleNumber | String | Vehicle registration number linked to the FASTag |
documentType | String | Specifies the verification type (Fastag History Details) |
| Field | Description |
|---|---|
ok | Indicates whether the verification was successful (true / false) |
message | Status message describing the verification result |
result.data[].readerReadTime | Timestamp when the FASTag was read at the toll plaza |
result.data[].seqNo | Sequence number of the transaction |
result.data[].laneDirection | Direction of vehicle movement at the toll lane |
result.data[].tollPlazaGeocode | Geocode identifier of the toll plaza |
result.data[].tollPlazaName | Name of the toll plaza where the transaction occurred |
result.data[].vehicleType | Type/category of the vehicle |
result.data[].vehicleRegNo | Vehicle registration number recorded in the transaction |
error | Contains error details if verification 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: \"Fastag History Details\"\r\n vehicleNumber: \"MH13DQ7319\"\r\n }\r\n ) {\r\n ok\r\n message\r\n result {\r\n __typename\r\n ... on FastagHistoryVerificationResult {\r\n data {\r\n readerReadTime\r\n seqNo\r\n laneDirection\r\n tollPlazaGeocode\r\n tollPlazaName\r\n vehicleType\r\n vehicleRegNo\r\n }\r\n }\r\n }\r\n }\r\n}\r\n",
"variables": {}
}'{
"data": {
"verify": {
"ok": true,
"message": "Verification completed successfully",
"result": {
"__typename": "FastagHistoryVerificationResult",
"data": [
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
},
{
"readerReadTime": null,
"seqNo": null,
"laneDirection": null,
"tollPlazaGeocode": null,
"tollPlazaName": null,
"vehicleType": null,
"vehicleRegNo": null
}
]
}
}
}
}