List all Items
GET/api/items
Headers
| Field | Type | Description |
|---|---|---|
| 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"
}
]