# Read an item on an allocation rule

Returns one line from a rule's item list: which catalogue item it gives out, how
many, and how long the allocation stays valid.

The line has to belong to the rule named in the URL; asking for one under the
wrong rule is not found.

Endpoint: GET /api/v2/inventory/allocation/{allocation_id}/item/{id}
Version: 2.0.0
Security: default

## Path parameters:

  - `allocation_id` (integer, required)
    The ID of the allocation rule.

  - `id` (integer, required)
    The ID of the item line on that rule.

## Header parameters:

  - `Rosterfy-Platform` (string)

## Response 200 fields (application/json):

  - `object` (object)

  - `object.id` (integer)

  - `object.inventory_item_id` (integer)

  - `object.quantity` (integer)

  - `object.valid_duration` (integer)

  - `object.created_at` (string)

  - `object.updated_at` (string)

  - `nice` (array)

  - `relations` (array)

  - `permissions` (object)

  - `permissions.read` (boolean)

  - `permissions.update` (boolean)

  - `permissions.delete` (boolean)

