FieldEdge Open API
DocsAPIs
DocsAPIs
  1. ItemCategory
  • 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. ItemCategory

Get item category by id.

GET
/v1/item-categories/{id}
Get single item category by id

Request

Path Params

Responses

🟢200
application/json
Category 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/item-categories/'
Response Response Example
200 - response
{
    "id": "0c9d704a-dd2e-4e71-abbc-43774a62bb82",
    "name": "General",
    "active": true,
    "imageUrl": "https://example.com/image.png",
    "parent": "00000000-0000-0000-0000-000000000000",
    "childTreeLevel": 1,
    "qboId": "QBO123"
}
Modified at 2026-03-19 11:30:01
Previous
Get List of itemCategories.
Next
Get company name by ID
Built with