POST 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": "8e1a7e10-ca53-4c2e-85dd-8fa8c8906626",
  "companyID": "bbd91964-e9cd-46d1-bc76-d0cdc15e9128"
}

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>bbd91964-e9cd-46d1-bc76-d0cdc15e9128</CompanyID>
  <ID>8e1a7e10-ca53-4c2e-85dd-8fa8c8906626</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":"8e1a7e10-ca53-4c2e-85dd-8fa8c8906626","companyID":"bbd91964-e9cd-46d1-bc76-d0cdc15e9128"}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.