Certificate verification and retrieval (Acord).
MeshVI API (1.0.0)
API documentation for MeshVI services. These endpoints require API authorization ([APIAuthorize]) via Bearer token. Includes Acord certificate verification and retrieval, client, driver, policy, and vehicle operations for real-time insurance verification and fleet management.
Download OpenAPI description
Languages
Servers
Mock server
https://docs.meshvi.com/_mock/apis/meshvi
Production
https://verified.meshvi.com
- Mock serverhttps://docs.meshvi.com/_mock/apis/meshvi/v1/clients
- Productionhttps://verified.meshvi.com/v1/clients
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.meshvi.com/_mock/apis/meshvi/v1/clients?page=1&limit=100&sort=string&name=string&dot=string&agencyId=0&producerId=0&parentClientId=0&deleted=true&clientTypeId=0&acordEnabled=true' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- Mock serverhttps://docs.meshvi.com/_mock/apis/meshvi/v1/clients
- Productionhttps://verified.meshvi.com/v1/clients
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.meshvi.com/_mock/apis/meshvi/v1/clients \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"clientName": "Acme Trucking",
"agencyId": 1,
"producerId": 1
}'- Mock serverhttps://docs.meshvi.com/_mock/apis/meshvi/v1/clients/{id}
- Productionhttps://verified.meshvi.com/v1/clients/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.meshvi.com/_mock/apis/meshvi/v1/clients/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'- Mock serverhttps://docs.meshvi.com/_mock/apis/meshvi/v1/clients/{id}
- Productionhttps://verified.meshvi.com/v1/clients/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
'https://docs.meshvi.com/_mock/apis/meshvi/v1/clients/{id}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"clientName": "Acme Trucking",
"agencyId": 1,
"producerId": 1
}'