POST api/Language/Add
Request Information
URI Parameters
None.
Body Parameters
LanguageAddDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Code | string |
Required |
|
| Title | string |
Required |
|
| IconUrl | string |
None. |
|
| WebSiteID | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"code": "sample string 1",
"title": "sample string 2",
"iconUrl": "sample string 3",
"webSiteID": "0789793d-11d0-4535-8d84-bc8fb15d8155"
}
application/xml, text/xml
Sample:
<LanguageAddDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RS.Core.Service.DTOs"> <Code>sample string 1</Code> <IconUrl>sample string 3</IconUrl> <Title>sample string 2</Title> <WebSiteID>0789793d-11d0-4535-8d84-bc8fb15d8155</WebSiteID> </LanguageAddDto>
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":"0789793d-11d0-4535-8d84-bc8fb15d8155"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.