Skip to content

FuelU2 Supplier API (1.0.0)

API for managing supplier accounts, configurations, and markups across the FuelU2 ecosystem.

Download OpenAPI description
Overview
FuelU2 API Support

support@fuelu2.com

License

MIT

Languages
Servers
Mock server

https://developers.fuelu2.com/_mock/apis/supplier/

Production server

https://api.fuelu2.com/

Operations
Operations
Operations
Operations
Operations

Request

Allows a user to request a price change for a supplier depot.

Security
bearerAuth
Bodyapplication/jsonrequired
SupplierDepotIdstring

The unique ID of the supplier depot for which the price change is being requested.

Example: "c5f3d11e-2a1d-42a7-9b2a-6e04b2a4f68a"
ProductIdstring

The product ID related to the price change.

Example: "a9b3fcd7-4b56-4a6b-8c0d-f2b145dd65f0"
NewPricenumber(decimal)

The new price being requested for the product.

Example: 22.45
EffectiveDatestring(date)

The date the new price should take effect.

Example: "2025-11-01"
Commentsstring

Optional comments or justification for the price change.

Example: "Increased supplier costs due to transport adjustments."
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."
  }'

Responses

Price change request submitted successfully.

Bodyapplication/json
successboolean
Example: true
messagestring
Example: "Price change request submitted successfully."
Response
application/json
{ "success": true, "message": "Price change request submitted successfully." }