API for managing supplier accounts, configurations, and markups across the FuelU2 ecosystem.
FuelU2 Supplier API (1.0.0)
Download OpenAPI description
Overview
FuelU2 API Support
License
Languages
Servers
Mock server
https://developers.fuelu2.com/_mock/apis/supplier/
Production server
https://api.fuelu2.com/
Bodyapplication/jsonrequired
The unique ID of the supplier depot for which the price change is being requested.
Example: "c5f3d11e-2a1d-42a7-9b2a-6e04b2a4f68a"
The product ID related to the price change.
Example: "a9b3fcd7-4b56-4a6b-8c0d-f2b145dd65f0"
- Mock server
https://developers.fuelu2.com/_mock/apis/supplier/pricechangerequest
- Production server
https://api.fuelu2.com/pricechangerequest
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developers.fuelu2.com/_mock/apis/supplier/pricechangerequest \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"SupplierDepotId": "c5f3d11e-2a1d-42a7-9b2a-6e04b2a4f68a",
"ProductId": "a9b3fcd7-4b56-4a6b-8c0d-f2b145dd65f0",
"NewPrice": 22.45,
"EffectiveDate": "2025-11-01",
"Comments": "Increased supplier costs due to transport adjustments."
}'Response
application/json
{ "success": true, "message": "Price change request submitted successfully." }