Forza Refurbished¶
Forza Refurbished is a Dutch refurbished electronics company, certified under the Keurmerk Refurbished quality mark. They offer certified refurbished smartphones, tablets, laptops, and accessories. Forza provides a drop-ship service, meaning orders are shipped directly from their warehouse to the end customer.
-
Website
-
Drop-ship
Direct shipment from Refurbisher to end customer
-
Keurmerk Refurbished
Certified quality standards for refurbished electronics
-
Currency
EUR
Status¶
| Artifact | Acceptatie | Productie |
|---|---|---|
| Refurbisher | ID: 6 · → IRP |
ID: 6 · → IRP |
| Supplier | ID: 4 · → IRP |
ID: 4 · → IRP |
| Offer connector | Web GET · JSON · Basic Auth · → | Web GET · JSON · Basic Auth · → |
| Order connector | Web POST · Basic Auth · → | Web POST · Basic Auth · → |
| Shipment webhook | Not configured | Not configured |
IRP¶
| Field | Value |
|---|---|
| Refurbisher ID | 6 |
| Supplier ID | 4 |
| Odoo Vendor ID | 11478 |
| Currency | EUR |
| Shipping Costs | €3.26 |
| Home Copy Tax | €3.18 |
| Default Margin | 24% |
| Stock Threshold | 1 |
| Approved Refurbished | Yes |
| Drop-ship | Yes |
Monitoring Thresholds¶
| Metric | Threshold |
|---|---|
| Latest order (hours) | 44 |
| Offers stock (hours) | 32 |
| Open order (days) | 96 |
| Offers endpoint HTTP status | 749 |
Refurbisher Connector Config¶
"forza": {
"name": "forza",
"refurbisher_id": 6,
"sandbox": false,
"offers": {
"connection": "web",
"endpoint": "https://api.forza-refurbished.nl/api/v1/products",
"auth": {
"type": "basicauth",
"username": "info@iused.nl",
"password": "XXXXXXXXXXXXXXX"
},
"type": "json",
"paginate": false,
"offer_location": "",
"price_locale": "en_US",
"mapping": {
"name": "title",
"sku": "sku",
"stock_available": "stock",
"ean": { "attributes": { "$key": "key", "$key_value": "ean", "value": "value" } },
"price_purchase_amount": { "attributes": { "$key": "key", "$key_value": "reseller_price_ex_vat", "value": "value" } },
"price_consumer_amount": { "attributes": { "$key": "key", "$key_value": "consumer_price_ex_vat", "value": "value" } }
}
},
"order": {
"connection": "web",
"endpoint": "https://api.forza-refurbished.nl/api/v1/orders",
"auth": {
"type": "basicauth",
"username": "info@iused.nl",
"password": "XXXXXXXXXXXXXXX"
},
"order_object": {
"vendorOrderId": "id",
"orderReference": "order.order_number",
"shipping.address.companyname": "orderShippingAddress.company",
"shipping.address.firstname": "orderShippingAddress.first_name",
"shipping.address.lastname": "orderShippingAddress.last_name",
"shipping.address.telephone": "!0612345678",
"shipping.address.zipCode": "orderShippingAddress.zipcode",
"shipping.address.houseNumber": "orderShippingAddress.house_number",
"shipping.address.houseNumberAddition": "orderShippingAddress.house_number_addition",
"shipping.address.street": "orderShippingAddress.street",
"shipping.address.city": "orderShippingAddress.city",
"shipping.address.countryCode": "orderShippingAddress.country->getIsoAlpha2",
"shipping.address.vatId": "!-",
"items": "%ITEMS%"
},
"item_object": {
"sku": "productVariant.refurbisherOffer.sku",
"quantity": "quantity"
},
"response_object": {
"asserts": {
"success": "accepted",
"status": "in:200",
"forza_order_id": "present|filled"
},
"fields": {
"externalOrderReference": "forza_order_id"
}
}
}
}
API Integration¶
Forza Refurbished exposes a REST API for both offer retrieval and order submission. All requests use HTTP Basic Authentication.
Credentials
Stored in 1Password under iUsed - IRP - Refurbisher: Forza Refurbished.
Forza uses HTTP Basic Authentication on all endpoints.
Authorization: Basic <base64(username:password)>
| Field | Value |
|---|---|
| Username | info@iused.nl |
| Password | Stored in 1Password |
| Method | Endpoint | Description |
|---|---|---|
GET |
https://api.forza-refurbished.nl/api/v1/products |
Retrieve offer feed (JSON) |
POST |
https://api.forza-refurbished.nl/api/v1/orders |
Submit a new order |
The offer feed is returned as a JSON array fetched via HTTP GET. No pagination is applied.
| Field | JSON Path |
|---|---|
| Name | title |
| SKU | sku |
| Stock | stock |
| EAN | attributes[key=ean].value |
| Purchase Price | attributes[key=reseller_price_ex_vat].value |
| Consumer Price | attributes[key=consumer_price_ex_vat].value |
Format details
- Type:
json - Paginated: No
- Price locale:
en_US
| Assert | Rule |
|---|---|
success |
accepted |
status |
in:200 |
forza_order_id |
present|filled |
The forza_order_id field is stored as the external order reference.