GET api/poolDepartmentItemapi/pooldepartmentitemsbydepartmentitem/{departmentItemId}?active={active}&lastUpdate={lastUpdate}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
departmentItemId

globally unique identifier

Required

active

boolean

None.

lastUpdate

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of PoolDepartmentItemViewModel
NameDescriptionTypeAdditional information
date

date

Required

active

boolean

Required

department_item_id

globally unique identifier

Required

id

globally unique identifier

None.

quantity

integer

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "date": "2026-01-12T03:10:37.829816+00:00",
    "active": true,
    "department_item_id": "72b3f071-ed10-4af2-b4ff-ccc6cd61a014",
    "id": "01e2f98c-b626-42d1-b20d-812fc3384d46",
    "quantity": 5
  },
  {
    "date": "2026-01-12T03:10:37.829816+00:00",
    "active": true,
    "department_item_id": "72b3f071-ed10-4af2-b4ff-ccc6cd61a014",
    "id": "01e2f98c-b626-42d1-b20d-812fc3384d46",
    "quantity": 5
  }
]

application/xml, text/xml

Sample:
<ArrayOfpool_department_item xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EntityModel">
  <pool_department_item>
    <active>true</active>
    <date>2026-01-12T03:10:37.829816+00:00</date>
    <department_item_id>72b3f071-ed10-4af2-b4ff-ccc6cd61a014</department_item_id>
    <id>01e2f98c-b626-42d1-b20d-812fc3384d46</id>
    <quantity>5</quantity>
  </pool_department_item>
  <pool_department_item>
    <active>true</active>
    <date>2026-01-12T03:10:37.829816+00:00</date>
    <department_item_id>72b3f071-ed10-4af2-b4ff-ccc6cd61a014</department_item_id>
    <id>01e2f98c-b626-42d1-b20d-812fc3384d46</id>
    <quantity>5</quantity>
  </pool_department_item>
</ArrayOfpool_department_item>