Items - Search invoice item information
GET yourdomain.com/api/items/search/:keysearch
Header
json
| Field | Type | Description |
|---|---|---|
| Authorization | String |
Basic Access Authentication token |
Parameter
json
| Field | Type | Description |
|---|---|---|
| keysearch | String |
Search Keywords |
Success 200
json
| Field | Type | Description |
|---|---|---|
| Item | Object |
Item Information |
Error 4xx
json
| Name | Type | Description |
|---|---|---|
| status | Boolean |
Request status |
| message | String |
No data were found |
HTTP/1.1 200 OK
{
"rate": "100.00",
"id": "1",
"name": "(100.00) JBL Soundbar",
"subtext": "The JBL Cinema SB110 is a hassle-free soundbar..."
}
HTTP/1.1 404 Not Found
{
"status": false,
"message": "No data were found"
}