Skip to content

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

Certificates

Certificate verification and retrieval (Acord).

Operations
Operations
Operations

Request

Returns a paginated list of drivers based on filter and paging request.

Security
BearerAuth
Bodyapplication/jsonrequired
filterobject

Driver filter criteria.

pageIndexinteger
Example: 1
pageSizeinteger
Example: 20
sortBystring
Example: "name"
sortOrderstring
Example: "asc"
curl -i -X POST \
  https://docs.meshvi.com/_mock/apis/meshvi/v1/drivers/search \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "filter": {},
    "pageIndex": 1,
    "pageSize": 20,
    "sortBy": "name",
    "sortOrder": "asc"
  }'

Responses

Paginated driver list.

Operations

Vehicles

Vehicle certificate operations.

Operations