Vehicle e-Challan
Check is there any challan is active in your vehicle account, fetch the list of challan that are Pending or Disposed against your Vehicle.
This API will take vehicle number and connect with E-Challan API to get data.
Method Type
POST
Header
Authorization
JWT eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxNDgsInVzZXJuYW1lIjoicHJhdGVla3JhaStkZW1vQG1hc3RlcnNpbmRpYS5jbyIsImV4cCI6MTY5NjA0Njc4MCwiZW1haWwiOiJwcmF0ZWVrcmFpK2RlbW9AbWFzdGVyc2luZGlhLmNvIiwib3JpZ19pYXQiOjE2OTU5NjAzODB9.zWJsCcqMd06X1aMjvXPQRqQGQddKjF6vpkOZgKFG_80
Yes
Subid
Yes- Will be shared during POC.
Productid
arap
Yes
Mode
Buyer
Yes
Body
raw - JSON
{
"vehiclenumber": "AB03Y8711"
}
Action
Hit Send Button
Success Response
In case vehicle number exist
```json
{
"success": true,
"message": "Success",
"data": {
"response": [
{
"response": {
"data": {
"Disposed_data": [
{
"challan_place": "Canal, Rania, Fatehpur Roshanai, Uttar Pradesh 209304, India",
"sent_to_reg_court": "No",
"owner_name": "D****K Y***V",
"receipt_no": "UKRTE24040046069",
"challan_date_time": "02-04-2024 11:19:06",
"document_impounded": "",
"received_amount": 500,
"sent_to_court_on": null,
"remark": "NA",
"fine_imposed": "500",
"amount_of_fine_imposed": null,
"challan_no": "UP79158240402111906",
"dl_no": null,
"name_of_violator": "D****K Y***V",
"sent_to_virtual_court": "No",
"date_of_proceeding": null,
"driver_name": "D****K Y***V",
"court_address": null,
"challan_status": "Disposed",
"department": "Traffic",
"state_code": "UP",
"court_name": null,
"offence_details": [
{
"act": "MV act 1988 S 122,126 R/W 177",
"name": "violation of parking rules."
}
]
},
{
"challan_place": "",
"sent_to_reg_court": "No",
"owner_name": "D****K Y***V",
"receipt_no": "UKTTE23070070305",
"challan_date_time": "06-07-2023 12:15:41",
"document_impounded": "",
"received_amount": 5000,
"sent_to_court_on": null,
"remark": "NA",
"fine_imposed": "5000",
"amount_of_fine_imposed": null,
"challan_no": "UP176341230706121541",
"dl_no": null,
"name_of_violator": "D****K Y***V",
"sent_to_virtual_court": "No",
"date_of_proceeding": null,
"driver_name": "D****K Y***V",
"court_address": null,
"challan_status": "Disposed",
"department": "Traffic",
"state_code": "UP",
"court_name": null,
"offence_details": [
{
"act": "Section 192 read with Rule 51 of the CMV rules 1989",
"name": "faulty number plate"
}
]
}
],
"Pending_data": [
{
"challan_place": "69WR+JMW, Khamanpur, Uttar Pradesh 232110, India",
"sent_to_reg_court": "No",
"owner_name": "D****K Y***V",
"challan_date_time": "02-07-2024 18:47:16",
"document_impounded": "",
"sent_to_court_on": null,
"remark": "Without cash",
"fine_imposed": "11500",
"amount_of_fine_imposed": null,
"challan_no": "UK199375240702184716",
"dl_no": null,
"name_of_violator": "D****K Y***V",
"sent_to_virtual_court": "No",
"date_of_proceeding": null,
"driver_name": "D****K Y***V",
"court_address": null,
"rto_distric_name": "Chandauli",
"challan_status": "Pending",
"department": "Traffic",
"state_code": "UP",
"court_name": null,
"offence_details": [
{
"act": "MV act 1988 S 122,126 R/W 177",
"name": "violation of parking rules."
},
{
"act": "Section 192 read with Rule 51 of the CMV rules 1989",
"name": "faulty number plate"
}
]
}
]
},
"message": "Record finds successfully",
"status": "200"
},
"responseStatus": "SUCCESS"
}
],
"error": "false",
"code": "200",
"message": "Success"
}
}
```
Invalid vehicle number format
{ "response": null, "error": "true", "code": "400", "message": "Data format failed OR wrong value entered at: nhno. Format should fol low [A-Z]{2}-[A-Z0-9]{1,4}" }
In case vehicle number not exist
{ "response": [ { "response": { "code": "305", "message": "No Records Found!" }, "responseStatus": "SUCCESS" } ], "error": "false", "code": "200", "message": "Success" }
Status Code 200: vehicle data response Status Code 400: Bad request (Invalid json syntax, invalid json key) Status Code 401 or 403: Unauthenticated or Unauthorized Status Code 500: Some internal server error occurred Status Code 502: Server is not responding.
Last updated
Was this helpful?