PUT OrderStatus/{id}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
id | integer |
Required |
Body Parameters
OrderStatusDtoName | Description | Type | Additional information |
---|---|---|---|
OrderStatusId | integer |
Required Range: inclusive between 0 and 2147483647 |
|
Code | string |
Required String length: inclusive between 0 and 500 |
|
Title | string |
Required String length: inclusive between 0 and 500 |
|
Description | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "OrderStatusId": 1, "Code": "sample string 2", "Title": "sample string 3", "Description": "sample string 4" }
application/xml, text/xml
Sample:
<OrderStatusDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PackageSite.Models.Dto"> <Code>sample string 2</Code> <Description>sample string 4</Description> <OrderStatusId>1</OrderStatusId> <Title>sample string 3</Title> </OrderStatusDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.