List all Items

GET/api/items

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area
curl -X GET "https://yoursite.com/api/items" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

HTTP/1.1 200 OK
[
  {
    "id": "1",
    "title": "Website Design",
    "description": "Full website design package",
    "category_id": "1",
    "unit_type": "hours",
    "rate": "150.00",
    "show_in_client_portal": "1",
    "deleted": "0",
    "category_title": "Services"
  }
]
MethodGET
Path/api/items
GroupItems
Sincev1.0.0
Defined inRestApi/Controllers/ItemsController.php