PUT api/Language/Update
Request Information
URI Parameters
None.
Body Parameters
LanguageUpdateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
Required |
|
| Title | string |
Required |
|
| IconUrl | string |
None. |
|
| WebSiteID | globally unique identifier |
None. |
|
| ID | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"code": "sample string 1",
"title": "sample string 2",
"iconUrl": "sample string 3",
"webSiteID": "32628557-e2ce-47e3-b5e4-853a97805f2d",
"id": "1b1fbfe7-62ce-452b-8b34-fa9fd0df0406"
}
application/xml, text/xml
Sample:
<LanguageUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RS.Core.Service.DTOs"> <ID>1b1fbfe7-62ce-452b-8b34-fa9fd0df0406</ID> <Code>sample string 1</Code> <IconUrl>sample string 3</IconUrl> <Title>sample string 2</Title> <WebSiteID>32628557-e2ce-47e3-b5e4-853a97805f2d</WebSiteID> </LanguageUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"Code":"sample string 1","Title":"sample string 2","IconUrl":"sample string 3","WebSiteID":"32628557-e2ce-47e3-b5e4-853a97805f2d","ID":"1b1fbfe7-62ce-452b-8b34-fa9fd0df0406"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.