PUT api/Warehouse/Update

Request Information

URI Parameters

None.

Body Parameters

WarehouseUpdateDto
NameDescriptionTypeAdditional information
Code

string

None.

Name

string

None.

ID

globally unique identifier

Required

CompanyID

globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "code": "sample string 1",
  "name": "sample string 2",
  "id": "9aa1bca1-62e9-49be-91bd-7faf2d720ba7",
  "companyID": "13c034dc-e328-43cc-bbf0-90d2bea58f7b"
}

application/xml, text/xml

Sample:
<WarehouseUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TP.TulTrack.Core.Service.DTOs">
  <CompanyID>13c034dc-e328-43cc-bbf0-90d2bea58f7b</CompanyID>
  <ID>9aa1bca1-62e9-49be-91bd-7faf2d720ba7</ID>
  <Code>sample string 1</Code>
  <Name>sample string 2</Name>
</WarehouseUpdateDto>

application/x-www-form-urlencoded

Sample:

Sample not available.

text/html

Sample:
{"code":"sample string 1","name":"sample string 2","id":"9aa1bca1-62e9-49be-91bd-7faf2d720ba7","companyID":"13c034dc-e328-43cc-bbf0-90d2bea58f7b"}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml, text/html

Sample:

Sample not available.