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
  • ItemCategory
    • Get List of itemCategories.
      GET
DocsAPIs
DocsAPIs
  1. Item

Creates a new inventory item

POST
/v1/items
Creates a new inventory item with name, cost, rate, optional category, image, and tax information.

Request

Body Params application/jsonRequired

Examples

Responses

🟢201
application/json
Item created successfully
Body

🟠400
🟠401
🟠409
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://dev.api.fieldedge.com/leads/v1/items' \
--header 'Content-Type: application/json' \
--data-raw '{
    "Type": "Inventory",
    "ExternalId": "EXT-1001",
    "name": "Air Filter",
    "description": "High efficiency air filter suitable for HVAC systems.",
    "cost": 20.5,
    "rate": 35,
    "categoryId": "b3a41f9f-2c62-4f0b-b6aa-6e2a2dfb9a11",
    "category": "HVAC:Filters",
    "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAA...",
    "taxable": true,
    "salesTaxCode": "7e9d6c0a-11b4-4c6e-bc6f-0d20a5c9a321",
    "TaxCode": "b0fa8549-a34d-4360-9d79-a72c1ab6726c",
    "taxableSpecify": "Standard Tax"
}'
Response Response Example
201 - response
{
    "data": {
        "itemId": "c4e8b7d2-9c63-4d88-bc6d-6d3c45fbc1c2",
        "externalId": "EXT-1001",
        "type": "Inventory",
        "name": "Air Filter",
        "description": "High efficiency air filter",
        "cost": 20.5,
        "rate": 35,
        "categoryId": "b3a41f9f-2c62-4f0b-b6aa-6e2a2dfb9a11",
        "imageUrl": "https://cdn.company.com/items/airfilter.png",
        "taxable": true,
        "salesTaxcode": "7e9d6c0a-11b4-4c6e-bc6f-0d20a5c9a321"
    }
}
Modified at 2026-03-12 12:31:15
Previous
Registers a new webhook endpoint to receive event notifications.
Next
Get List of itemCategories.
Built with