PUT api/inputoutputformat/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
InputOutputFormat| Name | Description | Type | Additional information |
|---|---|---|---|
| SlNo | integer |
None. |
|
| FormatID | integer |
None. |
|
| Format | string |
Required String length: inclusive between 0 and 50 |
|
| IsActive | boolean |
Required |
|
| UserID | string |
Required String length: inclusive between 0 and 50 |
Request Formats
application/json, text/json
Sample:
{
"SlNo": 1,
"FormatID": 2,
"Format": "sample string 3",
"IsActive": true,
"UserID": "sample string 5"
}
application/xml, text/xml
Sample:
<InputOutputFormat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GOPWebAPI.Models"> <Format>sample string 3</Format> <FormatID>2</FormatID> <IsActive>true</IsActive> <SlNo>1</SlNo> <UserID>sample string 5</UserID> </InputOutputFormat>
multipart/form-data
Sample:
<InputOutputFormat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GOPWebAPI.Models"><Format>sample string 3</Format><FormatID>2</FormatID><IsActive>true</IsActive><SlNo>1</SlNo><UserID>sample string 5</UserID></InputOutputFormat>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |