API for handling customer data, relationships, and order interactions within the FuelU2 network.
FuelU2 Customer API (1.0.0)
Download OpenAPI description
Overview
FuelU2 API Support
License
Languages
Servers
Mock server
https://developers.fuelu2.com/_mock/apis/customer/
Production server
https://api.fuelu2.com/
- Mock server
https://developers.fuelu2.com/_mock/apis/customer/Drivers
- Production server
https://api.fuelu2.com/Drivers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://developers.fuelu2.com/_mock/apis/customer/Drivers?AllowBlitz=true&CustomerId=497f6eca-6276-4993-bfeb-53cbbbba6f08&FirstName=string&IdPassport=string&LastName=string&LicenseExpiryDate=2019-08-24T14%3A15%3A22Z' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "message": "Driver created successfully" }
- Mock server
https://developers.fuelu2.com/_mock/apis/customer/Drivers
- Production server
https://api.fuelu2.com/Drivers
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X DELETE \
https://developers.fuelu2.com/_mock/apis/customer/Drivers \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json-patch+json' \
-d '{
"id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"createdOn": "2025-10-07T11:28:36.700Z"
}'
Response
application/json
{ "success": true, "message": "Driver deleted successfully" }
- Mock server
https://developers.fuelu2.com/_mock/apis/customer/Drivers/paged
- Production server
https://api.fuelu2.com/Drivers/paged
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developers.fuelu2.com/_mock/apis/customer/Drivers/paged?Page=1&PageSize=20&CustomerId=3fa85f64-5717-4562-b3fc-2c963f66afa6&SubContractsId=sub_1234%2Csub_5678&Text=John' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'
Response
application/json
{ "data": [ {} ], "total": 0, "message": "Drivers fetched successfully" }