Index

api/v1/items

Path: api/v1/items

This API is JSON:API compliant.

This endpoint supports the following methods:
GET

The resource type for this endpoint is Item
The identifier is itemno

The Item resource type attributes are as follows:

{
"ItemCode":string
"Description":string
}

Example GET (Return specific)

Path: api/v1/items/10

Response:

{
    "data": {
        "id": "10",
        "type": "Item",
        "attributes": {
            "ItemCode": "SALE",
            "Description": "Sale"
        },
        "links": {
            "self": "/api/v1/items/10"
        }
    }
}