List Products
GET
/products
List products.
Roles
Users with the following roles may access this endoint:
ThirdPartyDriver
Breaking Changes
No breaking changes.
Request
- Sample Request
- Sample Response
GET /products/
Authorization: Bearer {your-auth-token}
Content-Type: application/json
x-tenant-id: {your-tenant-id}
Access-Control-Allow-Headers: Authorization, Accept, X-TENANT-ID, Content-Type
Access-Control-Allow-Methods: GET
Access-Control-Allow-Origin: *
Allow: GET
Content-Length: 2679
Content-Type: application/json
Date: Sat, 20 Aug 2022 01:43:26 GMT
Server: WSGIServer/0.2 CPython/3.9.5
X-API-VERSION: 2019/02/08
X-REQUEST-ID: ffbb03c9-f878-4d24-b56f-4d7753e2bf8b
{
"current_limit": 100,
"current_page": 1,
"results": [
{
"by_weight": true,
"category": "Ferrous",
"description": "Alum Scraps - Bulk Materials (tons)",
"id": 159,
"location_id": 1,
"name": "Alum Scraps"
},
{
"by_weight": true,
"category": "Ferrous",
"description": "Aluminum Scrap Siding (tons)",
"id": 2281,
"location_id": 1,
"name": "Alum Siding"
},
{
"by_weight": false,
"category": "Misc",
"description": "Bin Repair due to customer damages",
"id": 126,
"location_id": 1,
"name": "Bin Repair"
},
{
"by_weight": true,
"category": "N-Ferrous",
"description": "Copper wire heavy (tons)",
"id": 2271,
"location_id": 1,
"name": "Copper Wire"
},
{
"by_weight": true,
"category": "Waste",
"description": "Misc Drywall Scraps (tons)",
"id": 124,
"location_id": 1,
"name": "Drywall"
},
{
"by_weight": false,
"category": "Misc",
"description": "Fuel Surcharge for long distance",
"id": 21,
"location_id": 1,
"name": "Fuel Surcharge"
},
{
"by_weight": false,
"category": "Fee",
"description": "Fuel Surcharge",
"id": 9631,
"location_id": 1,
"name": "Fuel Surcharge"
},
{
"by_weight": true,
"category": "Waste",
"description": "Misc Garbage (tons)",
"id": 123,
"location_id": 1,
"name": "Garbage"
},
{
"by_weight": false,
"category": "Misc",
"description": "Hourly Labor",
"id": 129,
"location_id": 1,
"name": "Labor"
},
{
"by_weight": false,
"category": "Misc",
"description": "Paint Unit",
"id": 128,
"location_id": 1,
"name": "Painting"
},
{
"by_weight": true,
"category": "Ferrous",
"description": "Prepared Iron under 4 ft (tons)",
"id": 80,
"location_id": 1,
"name": "Prep Iron"
},
{
"by_weight": false,
"category": "Misc",
"description": "Tailgate Repairs",
"id": 127,
"location_id": 1,
"name": "Repair Gate"
},
{
"by_weight": true,
"category": "Waste",
"description": "Asphalt Roofing Debris (tons)",
"id": 2283,
"location_id": 1,
"name": "Roffing"
},
{
"by_weight": true,
"category": "SS",
"description": "Scrap Stainless (tons)",
"id": 2282,
"location_id": 1,
"name": "Stainless Steel"
},
{
"by_weight": false,
"category": "Misc",
"description": "Tipping Fee Front Load",
"id": 119,
"location_id": 1,
"name": "Tip Fee"
},
{
"by_weight": false,
"category": "Misc",
"description": "Welding Repair (hourly rate)",
"id": 4258,
"location_id": 1,
"name": "Welding"
},
{
"by_weight": true,
"category": "Wgt ",
"description": "Wgt Overage for 10/20 Yrd (tons)",
"id": 75,
"location_id": 1,
"name": "WGT 10/20"
},
{
"by_weight": true,
"category": "Wgt ",
"description": "Wgt Overage for 30/40Yrd (tons)",
"id": 50,
"location_id": 1,
"name": "WGT 30/40"
},
{
"by_weight": true,
"category": "Waste",
"description": "Misc Wood Scraps (tons)",
"id": 125,
"location_id": 1,
"name": "Wood"
}
],
"total_count": 19,
"total_pages": 1
}
Path Parameters
No path parameters.
Query Parameters
No query parameters.
Request Headers
Refer to StandardRequestHeadersModel for more details.
authorization
String, Required
Authorization header (bearer with access token). See the Authentication Guide to get started.
- Matches ^bearer [a-z0-9-_=]+.[a-z0-9-_=]+.?[a-z0-9-_.+/=]*$
- No longer than 256 characters.
- At least 1 characters long.
x-api-version
String, Optional
Request identifier.
- At least 1 and no more than 64 characters.
- Must be a valid API version string (2019/02/08, 2021/04/07, 2021/05/07, 2021/08/02, 2021/11/04, 2023/04/19).
x-tenant-id
Integer, Required
Tenant identifier. Contact CRO Software for more info if you don't already have this id. See list tenant ids for info on listing the tenants you have access to.
Request Body
No request body
Response
Response Headers
Refer to StandardResponseHeadersModel for more details.
x-api-version
String
Request identifier.
- At least 1 and no more than 64 characters.
- Must be a valid API version string (2019/02/08, 2021/04/07, 2021/05/07, 2021/08/02, 2021/11/04, 2023/04/19).
x-request-id
String
Request identifier.
- Valid UUID.
Response Body
Refer to LineItemListModel for more details.
current_limit
Integer
Maximun number of results per page.
- Less than or equal to 1000.
- Greater than or equal to 1.
current_page
Integer
Paged results page index (starting from 1).
- Less than or equal to 10000.
- Greater than or equal to 1.
results
Array[LineItemModel]
Refer to LineItemModel.
total_count
Integer
Paged results total viewable records.
- Less than or equal to 100000.
- Greater than or equal to 0.
total_pages
Integer
Paged results total pages.
- Less than or equal to 1000.
- Greater than or equal to 0.
Code Samples
- cURL
- Python
- CSharp 2.0
curl --request GET --include \
--header "Authorization: Bearer {your-auth-token}" \
--header "Content-Type: application/json" \
--header "x-tenant-id: {your-tenant-id}" \
127.0.0.1:8003/products
import requests, json
response = requests.get(
'http://localhost:8003/products',
headers={
'Authorization': 'Bearer {your-auth-token}',
'Content-Type': 'application/json',
'x-tenant-id': '{your-tenant-id}'
},
parameters={
}
)
results = json.loads(response.text)
print(results)
using System;
using System.Net;
using System.Collections.Specialized;
namespace CROSoftware
{
public class DemoClient
{
static public void Main ()
{
WebClient client = new WebClient();
// URL
String url = "/products";
// Headers
client.Headers.Add("Authorization", "Bearer {your-auth-token}");
client.Headers.Add("Content-Type", "application/json");
client.Headers.Add("x-tenant-id", "{your-tenant-id}");
string json = client.DownloadString(url);
Console.WriteLine(json);
}
}
}