Enspace
  1. Types
Enspace
  • Introduction
  • Authentication
  • Concepts
  • First Steps
  • Workspaces
    • Types
      • Fields
        • List Fields
        • Create Field
        • Get Field
        • Field Updated
        • Delete Field
      • Items
        • List Items
        • Create Item
        • Count Items
        • Get Item
        • Update Item
        • Delete item
      • List Types
        GET
      • Count Types
        GET
      • Get specific Type
        GET
      • Create Type
        POST
      • Update Type
        PUT
      • Delete Type
        DELETE
    • Members
      • List Members
      • Count Members
      • Get Member
      • New Member
      • Update Member
      • Remove Member
    • Roles
      • List roles
      • Create role
      • Get specific job title
      • Count positions
      • Update job title
      • Delete role
      • List Role Permissions
      • Add Permission to Role
      • Remove Role Permission
    • Member Groups
      • List groups
      • New group
      • Get group
      • Update group
      • Delete group
      • Add Users
      • Remove Users
    • List Workspaces
      GET
    • Workspace Context
      GET
    • New Workspace
      POST
    • Leave the workspace
      POST
    • Workspace Statistics
      GET
    • Workspace Deletion Preview
      GET
    • Delete Workspace
      DELETE
  • User
    • Audit Logs
      GET
    • List API Keys
      GET
  1. Types

Items

Items are units of information created from a pre-configured category. Each item follows the field structure defined by its category, ensuring data consistency.

They represent real records being tracked, such as#

Internal processes
Customer requests
Projects, tasks, documents, or any other relevant entity

Available Actions#

Create, edit, or delete items according to defined permissions
Track the history and lifecycle of each item
Use filters, tags, and relationships between items to better organize and visualize information
The endpoints in this group allow complete management of items throughout all stages.

API Structure#

List Items in a Category#

Item Structure#

[
  {
    "id": 1,
    "reference": "PROD-001",
    "status": "active",
    "data": {
      "name": "iPhone 15",
      "price": 4999.99,
      "category": "electronics",
      "available": true
    },
    "type": {
      "id": 1,
      "slug": "product",
      "name": "Product"
    },
    "created_at": "2024-01-15T10:30:00Z",
    "updated_at": "2024-01-15T10:30:00Z"
  }
]

For more information, see the official documentation
Previous
Delete Field
Next
List Items
Built with