PUT api/WebSite/Update
Request Information
URI Parameters
None.
Body Parameters
WebSiteUpdateDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Title | string |
None. |
|
| Url | string |
None. |
|
| GoogleAnalicts | string |
None. |
|
| CustomerID | globally unique identifier |
None. |
|
| ID | globally unique identifier |
Required |
Request Formats
application/json, text/json
Sample:
{
"title": "sample string 1",
"url": "sample string 2",
"googleAnalicts": "sample string 3",
"customerID": "99bd2d44-ebf8-41ca-addd-bf472488bb98",
"id": "e30a288a-2158-468f-bfa6-f743a41d6a6c"
}
application/xml, text/xml
Sample:
<WebSiteUpdateDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RS.Core.Service.DTOs"> <ID>e30a288a-2158-468f-bfa6-f743a41d6a6c</ID> <CustomerID>99bd2d44-ebf8-41ca-addd-bf472488bb98</CustomerID> <GoogleAnalicts>sample string 3</GoogleAnalicts> <Title>sample string 1</Title> <Url>sample string 2</Url> </WebSiteUpdateDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
text/html
Sample:
{"Title":"sample string 1","Url":"sample string 2","GoogleAnalicts":"sample string 3","CustomerID":"99bd2d44-ebf8-41ca-addd-bf472488bb98","ID":"e30a288a-2158-468f-bfa6-f743a41d6a6c"}
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml, text/html
Sample:
Sample not available.