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/
- Mock server
https://developers.fuelu2.com/_mock/apis/supplier/SupplierInvoices
- Production server
https://api.fuelu2.com/SupplierInvoices
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://developers.fuelu2.com/_mock/apis/supplier/SupplierInvoices \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"SupplierId": "4b0b2dcd-58b5-41a9-b8b9-202b67a828ae",
"InvoiceNumber": "INV-2025-001",
"Amount": 10000,
"DueDate": "2025-11-01"
}'Response
application/json
{ "success": true, "message": "Invoice created successfully." }
- Mock server
https://developers.fuelu2.com/_mock/apis/supplier/SupplierInvoices
- Production server
https://api.fuelu2.com/SupplierInvoices
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developers.fuelu2.com/_mock/apis/supplier/SupplierInvoices?SupplierId=string&Status=Pending' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Response
application/json
[ { "id": "3a7b5c12-8e1a-4f9a-b2a1-4d9b65d8e9af", "invoiceNumber": "INV-001", "status": "Pending", "amount": 12500.75, "createdDate": "2025-10-20T09:32:00Z" } ]