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": "046b2659-8dda-4b55-89b8-a6a90ce7d5d8",
  "companyID": "1f292710-c0ad-4f44-a62c-9dfcfcd0571a"
}

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>1f292710-c0ad-4f44-a62c-9dfcfcd0571a</CompanyID>
  <ID>046b2659-8dda-4b55-89b8-a6a90ce7d5d8</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":"046b2659-8dda-4b55-89b8-a6a90ce7d5d8","companyID":"1f292710-c0ad-4f44-a62c-9dfcfcd0571a"}

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

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

Sample:

Sample not available.