PUT api/Warehouse/UpdateArticle

Request Information

URI Parameters

None.

Body Parameters

ArticleVm
NameDescriptionTypeAdditional information
WarehouseItemId

integer

None.

ProjectMangerId

string

None.

WorkerId

string

None.

StatusId

integer

None.

CheckInTime

date

None.

CheckOutTime

date

None.

Request Formats

application/json, text/json

Sample:
{
  "WarehouseItemId": 1,
  "ProjectMangerId": "sample string 2",
  "WorkerId": "sample string 3",
  "StatusId": 4,
  "CheckInTime": "2025-12-17T14:46:12.7347884+01:00",
  "CheckOutTime": "2025-12-17T14:46:12.7347884+01:00"
}

application/xml, text/xml

Sample:
<ArticleVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Nokon.Nappen.Data.ViewModels">
  <CheckInTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-17T13:46:12.7347884Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>60</d2p1:OffsetMinutes>
  </CheckInTime>
  <CheckOutTime xmlns:d2p1="http://schemas.datacontract.org/2004/07/System">
    <d2p1:DateTime>2025-12-17T13:46:12.7347884Z</d2p1:DateTime>
    <d2p1:OffsetMinutes>60</d2p1:OffsetMinutes>
  </CheckOutTime>
  <ProjectMangerId>sample string 2</ProjectMangerId>
  <StatusId>4</StatusId>
  <WarehouseItemId>1</WarehouseItemId>
  <WorkerId>sample string 3</WorkerId>
</ArticleVm>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

None.