FieldEdge Open API
DocsAPIs
DocsAPIs
  1. Item
  • Lead
    • Creates a new lead with customer details, appointment preferences, and service information.
      POST
    • Fetches lead details based on the provided lead identifier.
      GET
  • Customer
    • Creates a new customer
      POST
    • Updates an existing customer
      PUT
    • Search customers by phone, email, or first name
      GET
    • Search customers based on address details.
      GET
    • Get customer details by ID
      GET
  • Webhook
    • Registers a new webhook endpoint to receive event notifications.
      POST
  • Item
    • Creates a new inventory item
      POST
    • Retrieve a paginated list of inventory items with optional filters
      GET
    • Updates an existing inventory item
      PATCH
    • Retrieve an inventory item by ID
      GET
  • ItemCategory
    • Get List of itemCategories.
      GET
    • Get item category by id.
      GET
  • Company
    • Get company name by ID
      GET
  1. Item

Retrieve an inventory item by ID

GET
/v1/items/{itemId}
Retrieves a single inventory item using its unique identifier.

Request

Path Params

Responses

🟢200
application/json
Item retrieved successfully
Body

🟢204
🟠400
🟠401
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://dev.api.fieldedge.com/open-api/v1/items/'
Response Response Example
200 - response
{
    "item": {
        "itemId": "66949738-b2f0-4265-9fbd-30123c4319b1",
        "type": "InventoryItem",
        "name": "00008 Inventory",
        "cost": 10.45,
        "rate": 24.24,
        "active": true,
        "description": "thef test 2",
        "categoryId": "665a7b79-7cee-46d2-834c-060d8d108ab0",
        "category": "AIF",
        "imageUrl": "https://fescdevmainstorage.blob.core.windows.net/7051bb08-5b31-44b7-9030-c6aa2e480eb6/Inventory_Item_Image_bcb94787-0ca7-4ffb-8c89-9664b8955d1a.jpg",
        "taxable": true,
        "salesTaxcode": "d45abc1d-a79b-4a84-a8fa-897eb6330522"
    }
}
Modified at 2026-03-19 11:30:01
Previous
Updates an existing inventory item
Next
Get List of itemCategories.
Built with