1. Settings
FoodGuard Mobile API
  • Authentication
    • Resolve Company
      GET
    • User Login
      POST
    • User Logout
      POST
  • Lookups
    • List Branches
      GET
    • Get Branch Details
      GET
    • List Suppliers
      GET
    • Get Supplier Details
      GET
    • List Food Categories
      GET
    • List Shipment Types
      GET
  • Batch Management
    • List Batches
      GET
    • Create Batch
      POST
    • Get Batch Details
      GET
  • Phase 1: Truck Inspection
    • Submit Truck Inspection
      POST
    • Upload Escalation Photo
      POST
  • Phase 2: Label Analysis
    • Analyze Label (OCR)
      POST
    • Update Batch OCR Data
      PATCH
  • Phase 3: Sample Evaluation
    • List Batch Samples
      GET
    • Add Sample to Batch
      POST
    • Replace Sample Photo
      PATCH
    • Delete Sample
      DELETE
  • Phase 4: Finalize
    • Finalize Batch Inspection
      POST
  • Dashboard & History
    • Get Dashboard Stats
    • Get Inspection History
  • Settings
    • Get Temperature Thresholds
      GET
  • Schemas
    • Sample
    • ShipmentTypeObject
  1. Settings

Get Temperature Thresholds

GET
/settings/thresholds
Returns temperature thresholds by shipment type. Types with null thresholds (dry, fruits_vegetables) are room temperature and require no validation.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or

Responses

🟢200
application/json
Threshold settings by shipment type
Body

Example
{
    "success": true,
    "data": {
        "shipment_types": [
            {
                "value": "frozen_raw",
                "label": "Frozen Raw",
                "target_temp": -10,
                "critical_temp": -8
            },
            {
                "value": "frozen_ready_to_eat",
                "label": "Frozen Ready to Eat",
                "target_temp": -20,
                "critical_temp": -18
            },
            {
                "value": "chilled",
                "label": "Chilled",
                "target_temp": 3,
                "critical_temp": 5
            },
            {
                "value": "dry",
                "label": "Dry",
                "target_temp": null,
                "critical_temp": null
            },
            {
                "value": "fruits_vegetables",
                "label": "Fruits/Vegetables",
                "target_temp": null,
                "critical_temp": null
            }
        ]
    }
}
🟠401
Modified at 2026-02-23 18:27:16
Previous
Get Inspection History
Next
Sample
Built with